if (!File.Exists(fileName)) {
using (StreamWriter writeStream = new StreamWriter(fileName, false, Encoding.UTF8)) { writeStream.Write(contents); writeStream.Close(); } }
the contents you need to be added on the new page can be saved in Db as html.



