ASP Read & Write File

[code language=”csharp”]
public void ReadFromFile()
{
string fullPath = System.Web.Hosting.HostingEnvironment.MapPath(FilePath);

if (System.IO.File.Exists(fullPath))
{
using (StreamReader sr = File.OpenText(fullPath))
{
Description = sr.ReadToEnd();
}
}
}

public void SaveToFile()
{
string fullPath = System.Web.Hosting.HostingEnvironment.MapPath(FilePath);
File.WriteAllText(fullPath, Description); //create / overwrite
}
[/code]

Chandra Oemaryadi has written 244 articles

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>