TextArea value is the HTML file source code, stored as HTML file code _ form effects

Source: Internet
Author: User
Tags trim
TextArea value is the HTML file source code, how to save the source code as an HTML file??
Such as
<meta http-equiv= "Content-type" content= "text/html; charset=gb2312 ">
&LT;TITLE&GT;HMTL page </title>
<body>
alert (OK);
</body>

1 floor
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 floor
To implement the Save method on the client:
<textarea id=mm style= "width:500" rows=8>
<meta http-equiv= "Content-type" content= "text/html; charset=gb2312 ">
&LT;TITLE&GT;HMTL page </title>
<body>
alert (OK);
</body>
</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>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.