Any javascript guru's know how to save the editor contents to a local disk file? A good spot might be to make it an option during a normal save but before posting to the server...Thanks! Bill
Wed, 09/14/2005 - 09:54
#1
RE: How to save content to local disk?
streamWriter = new StreamWriter(@"C:\index.html", false);
streamWriter.Write(FCKeditor1.Value.ToString());
streamWriter.Close();