ASP批量更新代碼
更新時間:2008年03月08日 23:38:42 作者:
我作了一個ASP靜態(tài)站,由于網站改片,所以所有靜態(tài)頁都要更新,原來是以時間命名為文件命,現在全部改成ID命名,但數據庫內的保存地址的那個字段無法更新,請各位大蝦指點一二,小弟不勝感激...................
<!--#include file="../Conn.asp"-->
<%
set rs=server.createobject("adodb.recordset")
sql="select * from article where bigtypes='我愛你'order by id desc" 找出數據庫內類別為我愛你的所有數據
rs.open sql,conn,1,3
if not rs.eof then
do while not rs.eof
fname = rs("id")&".html"
folder = "../html/Info/"
c_filepath = folder&fname
rs("filepath")=c_filepath
rs.update
rs.movenext
loop
end if
response.redirect "成功....."
%>
解決方法:
<%
set rs=server.createobject("adodb.recordset")
sql="select * from article where bigtypes='我愛你'order by id desc" 找出數據庫內類別為我愛你的所有數據
rs.open sql,conn,1,3
if not rs.eof then
do while not rs.eof
fname = rs("id")&".html"
folder = "../html/Info/"
c_filepath = folder&fname
conn.execute("update article set filepath='"&c_filepath&"' where id="&rs("id"))
rs.movenext
loop
end if
response.redirect "成功....."
%>
<%
set rs=server.createobject("adodb.recordset")
sql="select * from article where bigtypes='我愛你'order by id desc" 找出數據庫內類別為我愛你的所有數據
rs.open sql,conn,1,3
if not rs.eof then
do while not rs.eof
fname = rs("id")&".html"
folder = "../html/Info/"
c_filepath = folder&fname
rs("filepath")=c_filepath
rs.update
rs.movenext
loop
end if
response.redirect "成功....."
%>
解決方法:
復制代碼 代碼如下:
<%
set rs=server.createobject("adodb.recordset")
sql="select * from article where bigtypes='我愛你'order by id desc" 找出數據庫內類別為我愛你的所有數據
rs.open sql,conn,1,3
if not rs.eof then
do while not rs.eof
fname = rs("id")&".html"
folder = "../html/Info/"
c_filepath = folder&fname
conn.execute("update article set filepath='"&c_filepath&"' where id="&rs("id"))
rs.movenext
loop
end if
response.redirect "成功....."
%>
相關文章
SaveRemoteFile函數之asp實現保存遠程的文件到本地的代碼
SaveRemoteFile函數之asp實現保存遠程的文件到本地的代碼...2007-09-09響應對象 錯誤 ''ASP 0185 : 80020003'' 缺少默認屬性
發(fā)現個垃圾后臺用了大量的Response.Cookies,導致后臺認證出錯。2007-12-12asp中去除html中style,javascript,css代碼
剔除頁面中html中除文字以外的任何代碼,剛才發(fā)布了php版這個是ASP中的版本。2010-10-10