This article tells several methods for ASP to generate html. Friends who need it can refer to the details of the content below.
Method 1: FSO
Set fs = CreateObject("Scripting.FileSystemObject")
NewFile=Server.MapPath("/asp/chap06/at/newfile.html")
'Create a new file/newfile.html, if the file already exists, overwrite it
Set a = fs.CreateTextFile(NewFile, True)
Response.Write "New file has been created!"
a.close
File=Server.MapPath("newfile.html")
Set txt=fs.OpenTextFile(File,8,True) 'Open to a file that can write data at the end
data1="This sentence is written using the WriteLine method!~~"
txt.WriteLine data1
data2="This sentence is written using the Write method!~~"
txt.Write data2
txt.Close
Method 2: XMLHTTP
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
'Replace the following address with the file address of your homepage. Be sure to use the absolute path starting with http://, and you cannot write the relative path.
xml.Open "GET", "http://www.phpup.com", False
xml.Send
BodyText=xml.ResponseBody
BodyText=BytesToBstr(BodyText,"gb2312")
Set xml = Nothing
Dim fso, MyFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set MyFile= fso.CreateTextFile(server.MapPath("aa.htm"), True)
MyFile.WriteLine(BodyText)
MyFile.Close
other:
1
The following examples are three dynamics: index.asp?id=1/index.asp?id=2/index.asp?id=3/
The pages generate ndex1.htm, index2.htm, index3.htm respectively and are located in the root directory:
dim strUrl,Item_Classid,id,FileName,FilePath,Do_Url,Html_Temp
Html_Temp="
For i=1 To 3
Html_Temp = Html_Temp&"
Item_Classid = i
FileName = "Index"&Item_Classid&".htm"
FilePath = Server.MapPath("/")&"/"&FileName Html_Temp = Html_Temp&FilePath&"
Do_Url = "http://"
Do_Url = Do_Url&Request.ServerVariables("SERVER_NAME")&"/main/index.asp"
Do_Url = Do_Url&"?Item_Classid="&Item_Classid
strUrl = Do_Url
dim objXmlHttp
set objXmlHttp = Server.createObject("Microsoft.XMLHTTP")
objXmlHttp.open "GET",strUrl,false
objXmlHttp.send()
Dim binFileData
binFileData = objXmlHttp.responseBody
Dim objAdoStream
set objAdoStream = Server.createObject("ADODB.Stream")
objAdoStream.Type = 1
objAdoStream.Open()
objAdoStream.Write(binFileData)
objAdoStream.SaveToFile FilePath,2
objAdoStream.Close()
Next
Html_Temp = Html_Temp&"
%>
Response.Write ("Successfully generated file:" )
Response.Write ( "
" )
Response.Write Html_Temp
%>
Function BytesToBstr(body,Cset)
dim objstream
set objstream = Server.CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode =3
objstream.Open
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.Charset = Cset
BytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
End Function
%>
2
public templatefile,tmpdata
sub ofile()'Open the file and put the file contents into tmpdata
on error resume next
tmpdata=""
set Asstream=Server.CreateObject ("Adodb.Stream")
Asstream.type=2'File Type Text
Asstream.Mode = 3' read and write
Asstream.open
Asstream.CharSet = "GB2312"' character set
Asstream.LoadFromFile(tempelatefile)' Load from file
Assp=Astream.size
if err.number0 then
xz=-18
response.Write templatefile&"
"
err.clear
tmpdata=""
else
tmpdata=Astream.ReadText(Assp)
end if
end sub
sub save_file()
ofile()
recfilen=server.MapPath(dts)
Asstream.Flush
Asstream.close
Asstream.type=2
Asstream.Mode = 3
Asstream.open
Asstream.CharSet = "GB2312"
Asstream.position=0
Asstream.Writetext tmpdata,1'Write data to stream
Asstream.SaveToFile recfilen,2'Save to file
end sub
function dts()' generates random filename
if len(month(now()))>1 then
mm=month(now())
else
mm="0"&month(now())
end if
if len(day(now()))>1 then
d=day(now())
else
d="0"&day(now())
end if
if len(hour(now()))>1 then
h=hour(now())
else
h="0"&hour(now())
end if
if len(minute(now()))>1 then
m=minute(now())
else
m="0"&minute(now())
end if
if len(second(now()))>1 then
s=second(now())
else
s="0"&second(now())
end if
Randomize
upperbound=9999
lowerbound=1000
rds=Int((upperbound - lowerbound + 1) * Rnd + lowerbound)
dts="htm/"&year(now())&mm&d&h&m&s&rds&".htm"
end function
title=request.Form("title")
content=request.Form("content")
tmpdata=replace(tmpdata,"
tmpdata=replace(tmpdata,"
templatefile=server.MapPath("tempelate/1.htm")' template file
save_file()
%>
The above are several methods of generating html by ASP. I believe you have learned about it. For more related content, please continue to pay attention to the Wuxin Technology Channel.