我构建了一个项目,用户可以在特定文件夹中上传,查看,编辑和保存文件。我使用TinyMCE进行编辑,但是在编辑后我找不到如何保存内容的方法。有人可以给我一些建议吗?
答案 0 :(得分:0)
以下是如何保存TinyMCE控件的值。
String OutPath = Server.MapPath("~/myfiles/test.txt"); // here '~/' refers to root of your website
StreamWriter Out1 = new StreamWriter(OutPath);
Out1.WriteLine(TextBox1.Text.Trim());
Out1.Close(); //Close File
答案 1 :(得分:0)
假设您需要将html保存在根文件夹中的HtmlFiles
文件夹中,文件名为test.html
。
string path = Server.MapPath("~/HtmlFiles/test.html");
File.WriteAllText(path ,yorTextBox.Text);