- 1. Fresh HTML(HTML编辑器)最新绿色免费版 V3.60
- 2. Becky! Internet Mail(支持html格式邮件) V2.57.01...
- 3. xhEditor(简单迷你的可视化xhtml编辑器) V1.1.7
- 4. NK2Edit x64 (支持以text/html/xml的格式输出) V1....
- 5. 网页探针(查看网页任意对象HTML源码) V2.0 简体中文...
- 6. 都市赛车6 (Asphalt 6)for Android v3.1.6 最...
- 7. 免费ASP论坛程序Web Wiz Forums v9.71 英文版
- 8. 0323版 (卡巴斯基反病毒)病毒库 Kaspersky Anti-Vi...
- 9. 混淆代码从而保护知识产权ASP混天绫 V 0.96
- 10. HTML 文件管家Dirhtml英文绿色免费 V4.8561 版
Asp生成html实例代码的分享
这是一个ASP生成html的代码,现在拿出来跟大家一起分享,希望对正在学习ASP的朋友们能够有所帮助。
<%
Function GetPage(url)
'获得文件内容
dim Retrieval
Set Retrieval = CreateObject("Microsoft.XMLHTTP")
With Retrieval
.Open "Get", url, False ', "", ""
.Send
GetPage = BytesToBstr(.ResponseBody)
End With
Set Retrieval = Nothing
End Function
Function BytesToBstr(body)
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 = "GB2312"
BytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
End Function
'++++++++++++++++++++++++++++++++++++++++++++++++生成HTML文件开始
on error resume next
Url="http://www.pc-5.cn/txt/index-txt.asp"'要读取的页面地址
wstr = GetPage(Url)
'response.write(wstr)
Set fs=Server.CreateObject("Scripting.FileSystemObject")
'if not MyFile.FolderExists(server.MapPath("/html/")) then
'MyFile.CreateFolder(server.MapPath("/html/"))'
'end if
'要存放的页面地址
dizhi=server.MapPath("index.html")
If (fs.FileExists(dizhi)) Then
fs.DeleteFile(dizhi)
End If
Set CrFi=fs.CreateTextFile(dizhi)
Crfi.Writeline(wstr)
set CrFi=nothing
set fs=nothing
'++++++++++++++++++++++++++++++++++++++++++++++++生成HTML文件结束
'循环生成文章开始
for i=1 to 3026 step 1
'++++++++++++++++++++++++++++++++++++++++++++++++生成HTML文件开始
on error resume next
Url=http://www.pc-5.cn/txt/list.asp?id=100'要读取的页面地址
wstr = GetPage(Url)
'response.write(wstr)
Set fs=Server.CreateObject("Scripting.FileSystemObject")
'if not MyFile.FolderExists(server.MapPath("/html/")) then
'MyFile.CreateFolder(server.MapPath("/html/"))'
'end if
'要存放的页面地址
dizhi=server.MapPath("100.html")
If (fs.FileExists(dizhi)) Then
fs.DeleteFile(dizhi)
End If
Set CrFi=fs.CreateTextFile(dizhi)
Crfi.Writeline(wstr)
set CrFi=nothing
set fs=nothing
'++++++++++++++++++++++++++++++++++++++++++++++++生成HTML文件结束
next
'循环生成文章结束
response.write("已经生成所有首页调用的标题,请返回!")
Response.redirect(request.servervariables("http_referer"))
%>