将首页转成静态html页的asp文件

所属分类: 网络编程 / ASP编程 阅读数: 731
收藏 0 赞 0 分享
此程序只能将首页转成静态!(真对一个页面)

将createhtml.asp文件上传到 你的空间存放首页文件(index.asp)的目录下
录入网址直接打开createhtml.asp接提示操作就可以了
如果没有转成功可将createhtml.asp更名试一下(如:改成z.asp)录入网址直接打开z.asp
本文件可以随便改名不影响运行
复制代码 代码如下:

<%
if request.QueryString("action")="ok"  then
dim kk,url,http,reurl
url =trim(request.Form("url"))
if url="" then
url="https://www.jb51.net"
end  if
kk=trim(request.Form("ad"))
if kk="" then
kk="index.html"
end  if
reurl=trim(request.Form("reurl"))
  set http=Server.createobject("Microsoft."&chr(120)&"MLHTTP") 
  Http.open "GET",url,false 
  Http.send() 
  set objStream = Server.CreateObject("ADODB.Stream") 
  objStream.type = 1 
  objStream.open 
  objstream.write http.responseBody
  objstream.saveToFile server.mappath(kk),2
  response.write "<script language='javascript'>"
response.write "alert('发布成功');"
response.write "location.href='"&reurl&"';"
response.write "</script>"
else
%>
<style type="text/css">
<!--
.STYLE1 {
    font-size: 12px;
    color: #FF0000;
}
.STYLE2 {
    color: #0000FF;
    font-size: 12px;
}
-->
</style>

<form id="form1" name="form1" method="post" action="http://<%=request.ServerVariables("HTTP_HOST")&request.ServerVariables("SCRIPT_NAME")%>?action=ok">
<table><tr><td>
  <span class="STYLE2">要转静态的网址:</span></td><td><input name="url" type="text" id="url" value="https://www.jb51.net" /> 
  <span class="STYLE1">例如https://www.jb51.net 本机的文件 http://localhost/</span></td>
   </tr>
   <tr><td><span class="STYLE2">存放的路径:</span></td><td>
   <input name="ad" type="text" id="ad"  value="index.htm"/> 
   <span class="STYLE1">比如index.html 就是保存为和本文件同一目录下的一个index.html</span></td>
   </tr>
   <tr>
    <td><span class="STYLE2">转静态后需要跳转到:</span></td>
    <td>
    <input name="reurl" type="text" id="reurl" value="index.htm" /> 
    <span class="STYLE1">转静态完成后会有提示框然后确定后就转到您填写的页面</span></td>
    </tr>
   <tr><td><div align="right">   
    </div></td><td><input type="submit" name="Submit" value="提交" /></td>
    </tr></table>
</form>
<%end if%>
<span class="STYLE1">本文件可以随便改名不影响运行</span>
更多精彩内容其他人还在看

IIS访问ASP页面时报错The requested resource is in use.的解决办法

IIS访问ASP页面时报错The requested resource is in use.的解决办法
收藏 0 赞 0 分享

错误类型:Provider (0x80004005)未指定的错误 的一个处理方法

一般情况下asp可以正常运行,但只要连接数据库就提示,Microsoft JET Database Engine 错误'80004005'
收藏 0 赞 0 分享

关于“未指定的错误”的问题 的比较正解的解决方法

关于“未指定的错误”的问题 的比较正解的解决方法
收藏 0 赞 0 分享

关于asp+access的安全问题分析

关于asp+access的安全问题分析
收藏 0 赞 0 分享

把RS.GetRows看得更清楚

把RS.GetRows看得更清楚
收藏 0 赞 0 分享

ASP面向对象编程探讨及比较

ASP面向对象编程探讨及比较
收藏 0 赞 0 分享

ASP错误处理

ASP错误处理
收藏 0 赞 0 分享

web文件管理器的后续开发

web文件管理器的后续开发
收藏 0 赞 0 分享

上一篇,下一篇过程代码

上一篇,下一篇过程代码
收藏 0 赞 0 分享

一小偷类!!有兴趣的可以看看

一小偷类!!有兴趣的可以看看
收藏 0 赞 0 分享
查看更多