IW1QLH

  • Increase font size
  • Default font size
  • Decrease font size

Read a text file

E-mail Print PDF
ASPX.CS C# - How to read a text file

using System.IO;

public partial class Page1 : System.Web.UI.Page
{
             string line;
            StreamReader sr = new StreamReader(@"C:\TEXT.TXT");
            while ((line = sr.ReadLine()) != null)
            {
                ...
            }
}
Last Updated on Wednesday, 26 September 2007 09:22