Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Read contents of a file
Message
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Divers
Thread ID:
00931893
Message ID:
00932016
Vues:
26
Thanks Dmitry. I was using the StreamReader I just wasn't looking into it far enough (ReadLine vs ReadToEnd).
Thanks for the reply.

Sincerely,
Einar
>How about using StreamReader:
>
>
>FileInfo oFileInfo = new FileInfo(path);
>StreamReader oReader = oFileInfo.OpenText();
>string stringMyText = oReader.ReadToEnd();
>oReader.Close();
>
>
>HTH.
>
>>How can I read the contents of a file (htm or txt or any file for that matter) in ASP.NET?
>>
>>Currently this is what I do:
>>
>>string theFile="Include"+IncPage.ToString()+".htm";
>>string input;
>>System.IO.StreamReader sr = System.IO.File.OpenText(Server.MapPath(theFile));
>>
>>while ((input=sr.ReadLine())!=null)
>>{
>>  Response.Write(input);
>>}
>>sr.Close();
>>
>>
>>but it seems like a lot of work to read the file line by line. It works but there is always room for improvement :)
>>
>>Einar
Semper ubi sub ubi.
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform