欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

ASP批量更新代碼

 更新時(shí)間:2008年03月08日 23:38:42   作者:  
我作了一個(gè)ASP靜態(tài)站,由于網(wǎng)站改片,所以所有靜態(tài)頁都要更新,原來是以時(shí)間命名為文件命,現(xiàn)在全部改成ID命名,但數(shù)據(jù)庫內(nèi)的保存地址的那個(gè)字段無法更新,請(qǐng)各位大蝦指點(diǎn)一二,小弟不勝感激...................
<!--#include file="../Conn.asp"-->
<%
set rs=server.createobject("adodb.recordset")
sql="select * from article where bigtypes='我愛你'order by id desc"   找出數(shù)據(jù)庫內(nèi)類別為我愛你的所有數(shù)據(jù)
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 "成功....."
%>
解決方法:
復(fù)制代碼 代碼如下:

<%
set rs=server.createobject("adodb.recordset")
sql="select * from article where bigtypes='我愛你'order by id desc"   找出數(shù)據(jù)庫內(nèi)類別為我愛你的所有數(shù)據(jù)
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 "成功....."
%>

相關(guān)文章

最新評(píng)論