你的位置: 首页 > HTML5网站开发 > 正文
ASP页面伪静态加速程序
作者:漫游   分类: HTML5网站开发    时间:2011-10-19 14:27   热度:10590°   字号:        评论:12 
作者:漫游   分类: HTML5网站开发    时间:2011-10-19 14:27   热度:10590°  评论:12 条 

比较实用的功能,原理是通过FSO生成txt页面来当作缓存,访问本页面时会优先从这些txt页面处读取,比起一般动态页面需要读取多次数据库等的资源消耗,这个方法的消耗量少得多。适合于更新量不大、动态页面较多、较集中的网站程序。缺点是不一定能删掉作为缓存的txt文件。

转载:
<%
'该程序通过使用ASP的FSO功能,减少数据库的读取。经测试,可以减少90%的服务器负荷。页面访问速度基本与静态页面相当。
'使用方法:将该文件放在网站里,然后在需要引用的文件的“第一行”用include引用即可。

'=======================参数区=============================

DirName="txt\"  '静态文件保存的目录,结尾应带"\"。无须手动建立,程序会自动建立。
TimeDelay=1440      '更新的时间间隔,单位为分钟,如1440分钟为1天。生成的静态文件在该间隔之后会被删除。

'======================主程序区============================

foxrax=Request("foxrax")
if foxrax="" then
 FileName=GetStr()&".txt"
 FileName=replace(FileName,"/","xi")
 FileName=replace(FileName,"?","we")
 FileName=replace(FileName,"\","fa")
 FileName=DirName&FileName
 if tesfold(DirName)=false then
  createfold(Server.MapPath(".")&"\"&DirName)
 end if 
 if ReportFileStatus(Server.MapPath(".")&"\"&FileName)=true then
  List=ReadFile(FileName)
 else
  List=getHTTPPage(GetUrl())&"!@#$%"&now()
  WriteFile(FileName)
 end if
 Lists=split(List,"!@#$%")
 if DateDiff("n",Lists(1),now())>TimeDelay then
  del_file(FileName)
 end if
 Response.write Lists(0)
 Response.end
end if


'========================函数区============================

'获取当前页面url
Function GetStr()
On Error Resume Next
Dim strTemps
strTemps = strTemps & Request.ServerVariables("URL")
If Trim(Request.QueryString) <> "" Then
 strTemps = strTemps & "?" & Trim(Request.QueryString)
else
 strTemps = strTemps
end if
GetStr = strTemps
End Function

'获取缓存页面url
Function GetUrl()
On Error Resume Next
Dim strTemp
If LCase(Request.ServerVariables("HTTPS")) = "off" Then
  strTemp = "http://"
Else
  strTemp = "https://"
End If
strTemp = strTemp & Request.ServerVariables("SERVER_NAME")
If Request.ServerVariables("SERVER_PORT") <> 80 Then
  strTemp = strTemp & ":" & Request.ServerVariables("SERVER_PORT")
end if
strTemp = strTemp & Request.ServerVariables("URL")
If Trim(Request.QueryString) <> "" Then
  strTemp = strTemp & "?" & Trim(Request.QueryString) & "&foxrax=foxrax"
else
  strTemp = strTemp & "?" & "foxrax=foxrax"
end if
GetUrl = strTemp
End Function


'抓取页面
Function getHTTPPage(url)
 Set Mail1 = Server.CreateObject("CDO.Message")
 Mail1.CreateMHTMLBody URL,31
 AA=Mail1.HTMLBody
 Set Mail1 = Nothing
 getHTTPPage=AA
End Function

'写入文件
Function WriteFile(filename)
 set fso=createobject("scripting.filesystemobject")
 filepathx=server.mappath(filename)
 set f=fso.createtextfile(filepathx,true)
 f.writeline(list)
 f.close
End Function

'读取文件
Public Function ReadFile( xVar )
 xVar = Server.Mappath(xVar)
 Set Sys = Server.CreateObject("Scripting.FileSystemObject")
 If Sys.FileExists( xVar ) Then
 Set Txt = Sys.OpenTextFile( xVar, 1 )
 msg = Txt.ReadAll
 Txt.Close
 Else
 msg = "无"
 End If
 Set Sys = Nothing
 ReadFile = msg
End Function

'检测文件是否存在
Function ReportFileStatus(FileName)
 set fso = server.createobject("scripting.filesystemobject")
 if fso.fileexists(FileName) = true then
     ReportFileStatus=true
     else
     ReportFileStatus=false
 end if
 set fso=nothing
end function

'检测目录是否存在
function tesfold(foname)
   set fs=createobject("scripting.filesystemobject")
   filepathjm=server.mappath(foname)
   if fs.folderexists(filepathjm) then
      tesfold=True
   else
      tesfold= False
   end if
   set fs=nothing
end function

 '建立目录
sub createfold(foname)
   set fs=createobject("scripting.filesystemobject")
   fs.createfolder(foname)
   set fs=nothing
end sub

'删除文件
function del_file(path)      'path,文件路径包含文件名
set objfso = server.createobject("scripting.FileSystemObject")
'path=Server.MapPath(path)
if objfso.FileExists(path) then     '若存在则删除
 objfso.DeleteFile(path)         '删除文件
else
 'response.write "<script language='Javascript'>alert('文件不存在')</script>"
end if
set objfso = nothing
end function 
%>

把上面代码保存在一个页面里,例如名为html.asp,那么可以用下面的代码来测试:
<!--#include file=html.asp -->
<font size="7">当前时间是:<%=now()%></font>

瞧瞧上一篇文章去!   瞧瞧下一篇文章去!
本文标签: ASP
二维码加载中...
本文作者:漫游      文章标题: ASP页面伪静态加速程序
本文地址:http://www.roammemo.com/html5/29.html
版权声明:若无注明,本文皆为“漫游的备忘录”原创,转载请保留文章出处。
返回顶部    首页    手机版本   
版权所有:漫游的备忘录    站长: 漫游    模板基于:博闻广记 v1.2   程序:emlog