textarea的value是html文件源代码,存成html文件的代码
程序员文章站
2022-07-11 18:23:00
textarea的value是html文件源代码,如何把源代码存成html文件?? 如 &...
textarea的value是html文件源代码,如何把源代码存成html文件??
如
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<title>hmtl页面</title>
</head>
<body>
alert(ok);
</body>
</html>
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楼
在客户端实现保存的方法:
<textarea id=mm style="width: 500" rows=8>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<title>hmtl页面</title>
</head>
<body>
alert(ok);
</body>
</html>
</textarea><br>
<input type=button value=save onclick="save()">
<script language="javascript">
<!--
function save()
{
var txt = document.all.mm;
var ww = window.open("", "_blank", "width=100px, height=100px");
ww.document.write(txt.value);
ww.document.close();
ww.document.execcommand('saveas');
//ww.document.execcommand('saveas',false,'c:\\test.htm');
ww.close();
}
//-->
</script>
如
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<title>hmtl页面</title>
</head>
<body>
alert(ok);
</body>
</html>
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楼
在客户端实现保存的方法:
<textarea id=mm style="width: 500" rows=8>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<title>hmtl页面</title>
</head>
<body>
alert(ok);
</body>
</html>
</textarea><br>
<input type=button value=save onclick="save()">
<script language="javascript">
<!--
function save()
{
var txt = document.all.mm;
var ww = window.open("", "_blank", "width=100px, height=100px");
ww.document.write(txt.value);
ww.document.close();
ww.document.execcommand('saveas');
//ww.document.execcommand('saveas',false,'c:\\test.htm');
ww.close();
}
//-->
</script>
下一篇: js一组验证函数
推荐阅读
-
textarea的value是html文件源代码,存成html文件的代码
-
textarea的value是html文件源代码,存成html文件的代码
-
jquery模拟LCD 时钟的html文件源代码
-
文件名后缀是html格式的文件,如果有php代码,php代码会被忽略?
-
文件名后缀是html格式的文件,如果有php代码,php代码会被忽略?解决方案
-
文件名后缀是html格式的文件,如果有php代码,php代码会被忽略?解决方案
-
把html页面的部分内容保存成新的html文件的jquery代码_jquery
-
把html页面的部分内容保存成新的html文件的jquery代码_jquery
-
jquery模拟LCD 时钟的html文件源代码_jquery
-
jquery模拟LCD 时钟的html文件源代码_jquery