当前位置:Gxlcms > JavaScript > textarea的value是html文件源代码,存成html文件的代码_表单特效

textarea的value是html文件源代码,存成html文件的代码_表单特效

时间:2021-07-01 10:21:17 帮助过:16人阅读

textarea的value是html文件源代码,如何把源代码存成html文件??




hmtl页面


alert(ok);



1楼
dim fileNameStr
fileNameStr = Trim(Request.Form("fileName"))
dim fileContentStr
fileContentStr = Trim(Request.Form("fileContent"))
Set fs = CreateObject("Scripting.FileSystemObject")
dim filePath
filePath = Server.MapPath("PageURL/" & fileNameStr)
Set a = fs.CreateTextFile(filePath, True)
a.WriteLine(fileContentStr)
a.Close
2楼
在客户端实现保存的方法:



人气教程排行