- 1. Fresh HTML(HTML編輯器)最新綠色免費(fèi)版 V3.60
- 2. Becky! Internet Mail(支持html格式郵件) V2.57.01...
- 3. xhEditor(簡(jiǎn)單迷你的可視化xhtml編輯器) V1.1.7
- 4. NK2Edit x64 (支持以text/html/xml的格式輸出) V1....
- 5. 網(wǎng)頁(yè)探針(查看網(wǎng)頁(yè)任意對(duì)象HTML源碼) V2.0 簡(jiǎn)體中文...
- 6. 都市賽車6 (Asphalt 6)for Android v3.1.6 最...
- 7. 免費(fèi)ASP論壇程序Web Wiz Forums v9.71 英文版
- 8. 0323版 (卡巴斯基反病毒)病毒庫(kù) Kaspersky Anti-Vi...
- 9. 混淆代碼從而保護(hù)知識(shí)產(chǎn)權(quán)ASP混天綾 V 0.96
- 10. HTML 文件管家Dirhtml英文綠色免費(fèi) V4.8561 版
Asp生成html實(shí)例代碼的分享
這是一個(gè)ASP生成html的代碼,現(xiàn)在拿出來跟大家一起分享,希望對(duì)正在學(xué)習(xí)ASP的朋友們能夠有所幫助。
<%
Function GetPage(url)
'獲得文件內(nèi)容
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"'要讀取的頁(yè)面地址
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
'要存放的頁(yè)面地址
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文件結(jié)束
'循環(huán)生成文章開始
for i=1 to 3026 step 1
'++++++++++++++++++++++++++++++++++++++++++++++++生成HTML文件開始
on error resume next
Url=http://www.pc-5.cn/txt/list.asp?id=100'要讀取的頁(yè)面地址
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
'要存放的頁(yè)面地址
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文件結(jié)束
next
'循環(huán)生成文章結(jié)束
response.write("已經(jīng)生成所有首頁(yè)調(diào)用的標(biāo)題,請(qǐng)返回!")
Response.redirect(request.servervariables("http_referer"))
%>
- 1. 教你編寫安全的ASP代碼
- 2. ASP程序應(yīng)用之模板采用的簡(jiǎn)單教程
- 3. 關(guān)于ASP中大字段在Form中Post出錯(cuò)的解析
- 4. 關(guān)于在ASP程序頁(yè)面中插入excel文件的實(shí)例代碼分享
- 5. ASP程序?qū)崿F(xiàn)自動(dòng)采集程序及入庫(kù)的實(shí)例代碼分享
- 6. ASP一些錯(cuò)誤代碼的解釋說明
- 7. 關(guān)于ASP控制圖片顯示大小的實(shí)例代碼分享
- 8. ASP中類型轉(zhuǎn)換函數(shù)的介紹說明
- 9. ASP中定義數(shù)組方法分享
- 10. 關(guān)于ASP組件上傳的三種機(jī)制