ASP批量更新代码
ASP批量更新代码
发布时间:2016-12-29 来源:查字典编辑
摘要:解决方法:复制代码代码如下:

<>

<%

setrs=server.createobject("adodb.recordset")

sql="select*fromarticlewherebigtypes='我爱你'orderbyiddesc"找出数据库内类别为我爱你的所有数据

rs.opensql,conn,1,3

ifnotrs.eofthen

dowhilenotrs.eof

fname=rs("id")&".html"

folder="../html/Info/"

c_filepath=folder&fname

rs("filepath")=c_filepath

rs.update

rs.movenext

loop

endif

response.redirect"成功....."

%>

解决方法:

复制代码 代码如下:

<%

setrs=server.createobject("adodb.recordset")

sql="select*fromarticlewherebigtypes='我爱你'orderbyiddesc"找出数据库内类别为我爱你的所有数据

rs.opensql,conn,1,3

ifnotrs.eofthen

dowhilenotrs.eof

fname=rs("id")&".html"

folder="../html/Info/"

c_filepath=folder&fname

conn.execute("updatearticlesetfilepath='"&c_filepath&"'whereid="&rs("id"))

rs.movenext

loop

endif

response.redirect"成功....."

%>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新ASP教程学习
热门ASP教程学习
编程开发子分类