gusucode.com > 爱美尔女性商城源码 1.0源码程序 > wen/admin/about_html.asp

    <!--#include file="../Inc/conn.asp"-->
<!--#include file="admin_check.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="text/html; charset=GB2312" />
<title>admin</title>
<link href="Images/admin_css.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="<%=SitePath%>images/myfav.ico" type="image/x-icon" />
</head>
<body>
<p align="left" style="line-height:25px; font-size:14px;">
<font color="#000000"><b>注意:只有当您开启本站静态时,这里生成才有效果</b></font><br />
</p>


<%
	'得到域名
	sqldomain="select * from Yao_Config where ID=3" 
	Set rsdomain= Server.CreateObject("ADODB.Recordset")
	rsdomain.open sqldomain,conn,3,3
	yuming=rsdomain("Value")
	
	'数据库中第一个ID
	sqlk="select top 1 * from Yao_About" 
	Set rsk= Server.CreateObject("ADODB.Recordset")
	rsk.open sqlk,conn,3,3
	kaishi=rsk("ID")
	
	'数据库中最后一个ID
	sqlz="select top 1 * from Yao_About order by ID desc" 
	Set rsz= Server.CreateObject("ADODB.Recordset")
	rsz.open sqlz,conn,3,3
	zuihou=rsz("ID")
	
	if request("pid")=0 then
	m=kaishi
	else
	m=request("pid")+1
	end if
	
	if m<=zuihou then
	
	Set rs= Server.CreateObject("ADODB.Recordset")
	sql="select * from Yao_About where ID="&m&"" 
	rs.open sql,conn,3,3
	dim http,reurl
	set http=Server.createobject("Microsoft."&chr(120)&"MLHTTP") 
	Http.open "GET","http://"&yuming&"/About.asp?ID="&rs("id")&"",false 
	Http.send() 
	set objStream = Server.CreateObject("ADODB.Stream") 
	objStream.type = 1 
	objStream.open 
	objstream.write http.responseBody
	objstream.saveToFile server.mappath("../about/About_"&rs("id")&".html"),2
	response.Write "../about/About_"&rs("id")&".html 生成成功!<br>"
	response.write"<Script Language=Javascript>location.href='about_html.asp?pid="&m&"';</Script>"
	rs.close

	else
	response.Write "介绍类静态全部生成成功!总生成"&(zuihou-kaishi)+1&"个<br>"
	end if

%>
</body>
</html>