The value of textarea is the source code of the html file and is saved as the code of the html file.

Source: Internet
Author: User

The value of textarea is the source code of an html file. How can we save the source code as an html file ??
For example
<Html>
<Head>
<Meta http-equiv = "Content-Type" content = "text/html; charset = gb2312">
<Title> hmtl page </title>
</Head>
<Body>
Alert (OK );
</Body>
</Html>

1st 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
2nd floor
The method for saving on the client is as follows:
<Textarea id = mm style = "width: 500" rows = 8>
<Html>
<Head>
<Meta http-equiv = "Content-Type" content = "text/html; charset = gb2312">
<Title> hmtl page </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.doc ument. write (txt. value );
Ww.doc ument. close ();
Ww.document.exe cCommand ('saveas ');
// Ww.document.exe cCommand ('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.