A way to generate static HTML pages using only Asp+fso with a template _ Application tips

Source: Internet
Author: User
One way to generate static HTML pages using only ASP+FSO, without templates (especially for content-intensive pages)
Reprint Please specify: Transfer from Http://goaler.xicp.net

FSO to generate static HTML files when the replacement template label has been a very troublesome problem, at least I think so, but also to do a template, trouble! , I saw a way to solve the problem today.

such as a normal index.asp page, and the ASP code to bring up the contents of the database, and build a makehtml.asp page, add a textarea domain, assuming that name= "body", Index.asp in the textarea, such as:
<textarea name= "Body" ><!--#include file= "index.asp"--></textarea>, include this textarea in the form, Create an FSO object in the Receive form page, such as index.html file generation!

<%
Filename= ". /index.html "
If request ("Body") <> "" Then
Set fso = Server.CreateObject ("Scripting.FileSystemObject")
Set fout = FSO. CreateTextFile (Server.MapPath ("&filename&"))
Fout.write Request.Form ("Body")
Fout.close
Set fout=nothing
Set fso=nothing
End If
%>

So index.html file is generated, even templates are not needed, as long as the normal use of the ASP file read into the textarea can be, at present have not found the problem! Of course, the premise is the server to support FSO
Related Article

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.