Can anyone tell me how I can sort or filter using asp. The piece of code below pulls a line of data from many e-mail (.eml) documents and writes to one asp page. I need to look at the line the asp pulls from, and only return the files where the line equals 4.
Line = TextStream.readline
If Left(Line,7) = "X-SCL: " then scl=Right(Line,len(Line)-7)
SCL = Left(SCL,1)
If SCL = "" then SCL = "-"
Response.write "<TD><font size=2>" & scl & "</TD>"
Any help will be greatly appreciated.
Jovix
Line = TextStream.readline
If Left(Line,7) = "X-SCL: " then scl=Right(Line,len(Line)-7)
SCL = Left(SCL,1)
If SCL = "" then SCL = "-"
Response.write "<TD><font size=2>" & scl & "</TD>"
Any help will be greatly appreciated.
Jovix