静态页生成

简介:
<
%
url
= " 1shouye.asp " ' 源文件
filename = " index.html " ' 目标文件

Set MyFileObject = Server.CreateObject( " Scripting.FileSystemObject " )
path1
= server.mappath(filename)
Set MyTextFile = MyFileObject.CreateTextFile(path1)
strurl
= url
strTmp
= GetHTTPPage( trim (strurl))
MytextFile.Close
response.write
" <p> 生成 " & filename & " 成功 <br></p> "
Set MyFileObject = nothing

Function getHTTPPage(url)
On Error Resume Next
dim http
set http = Server.createobject( " Microsoft.XMLHTTP " )
Http.open
" GET " ,url, false
Http.send()
if Http.readystate <> 4 then
exit function
end if
getHTTPPage
= bytesToBSTR(Http.responseBody, " GB2312 " )
set http = nothing
If Err.number <> 0 then
Response.Write
" <p align='center'><font color='red'><b>服务器获取文件内容出错</b></font></p> "
Err.Clear
End If
End Function

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

Function timetohtml(str)
timetohtml
= Replace ( Replace ( Replace (str, " : " , "" ), " - " , "" ), " " , "" ) & " .html "
End Function
%
>
目录
相关文章
|
C++ Python
python类中初始化形式:def __init__(self)和def __init__(self, 参数1,参数2,,,参数n)区别
python类中初始化形式:def __init__(self)和def __init__(self, 参数1,参数2,,,参数n)区别
409 0
|
自然语言处理 安全 网络协议
最好用的云服务器,没有之一!
一名计算机研究生捣鼓后的感悟!
267 1
最好用的云服务器,没有之一!
|
Web App开发 JavaScript Android开发
第148天:js+rem动态计算font-size的大小,适配各种手机设备
需求: 在不同的移动终端设备中实现,UI设计稿的等比例适配。 方案: 布局排版都用rem做单位,然后不同宽度的屏,js动态计算根节点的font-size。 假设设计稿是宽750px来做的,书写css方便计算考虑,根节点的font-size假定为100px,得出设备宽为7.5rem。
1999 0
这几天做mp3条形图遇到的条形拉伸问题
这几天做mp3条形图遇到的条形拉伸问题 要弄明白 变形中心点 和 坐标原点 影片内的坐标原点是会影响拉伸方向的 见下图
|
2天前
|
搜索推荐 编译器 Linux
一个可用于企业开发及通用跨平台的Makefile文件
一款适用于企业级开发的通用跨平台Makefile,支持C/C++混合编译、多目标输出(可执行文件、静态/动态库)、Release/Debug版本管理。配置简洁,仅需修改带`MF_CONFIGURE_`前缀的变量,支持脚本化配置与子Makefile管理,具备完善日志、错误提示和跨平台兼容性,附详细文档与示例,便于学习与集成。
256 116