Showing posts with label Read a Text File in C# and ASP.Net. Show all posts
Showing posts with label Read a Text File in C# and ASP.Net. Show all posts

Thursday, September 24, 2015

Read a Text File in C# and ASP.Net

string root = Server.MapPath("~");
string Template = root +"\\filetext.txt";
StringBuilder line = new StringBuilder();
using (StreamReader rwOpenTemplate = new StreamReader(Template))
{
while (!rwOpenTemplate.EndOfStream)
{
line.Append(rwOpenTemplate.ReadToEnd());
}
}