gusucode.com > 爱美尔女性商城源码 1.0源码程序 > wen/admin/cp_html_3.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 />
<font color="#0000FF"><b>点击生成网站商品静态:</b></font><br />
<a href="cp_html_1.asp?Sub=newshtml&pid=0">生成全部商品</a> | <a href="cp_html_2.asp?Sub=newshtml&pid=0">生成今日商品</a> | <a href="cp_html_3.asp">按ID号生成商品</a>
</p>
<br /><br />

<form id="form1" name="form1" method="post" action="?Sub=newshtml&pid=0">
<p align="left" style="text-align:left; float:left;">
<font color="#000000"><b>ID为信息的自动编号</b></font> 开始ID:<input type="text" name="kaishiid" /> 结束ID:<input type="text" name="jieshuid" /> <input type="submit" name="Submit" value="生成" />
</p>
</form>

<%
Select Case Request("Sub")
Case "newshtml"
	
	'得到域名
	sqldomain="select * from Yao_Config where ID=3" 
	Set rsdomain= Server.CreateObject("ADODB.Recordset")
	rsdomain.open sqldomain,conn,3,3
	yuming=rsdomain("Value")
	
	
	kaishiid=request.form("kaishiid")
	jieshuid=request.form("jieshuid")
	
	for m = kaishiid to jieshuid
	
	Set rs= Server.CreateObject("ADODB.Recordset")
	sql="select * from Yao_shop 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&"/cp.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("../product/cp_"&rs("id")&".html"),2
	response.Write "../product/cp_"&rs("id")&".html<br>"
	rs.close
	
	next
	
	
End Select
%>
</body>
</html>