I have a website that posts a large file to my server. I need to read it line by line or at least be able to split it. It's 2000 pages long.
Right now, I have :
if (file != null && file.ContentLength > 0)
{
using (file.InputStream)
{
//Looking for this part
}
}
Thanks,
Phil