ASP 循环导入导出数据处理 不使用缓存

2020-02-18 16:00:12来源:爱站网 阅读 ()

新老客户大回馈,云服务器低至5折

在asp.net开发中,循环导入导出数据必须要进行处理,下面是爱站技术频道小编为大家带来的ASP 循环导入导出数据处理 不使用缓存,希望对你有所帮助。

<%
'//数据处理部分
dim Content,Num,I,strCodea

I=request("I")
If len(I)=0 then I=0
Response.write "<br><div align=center>该程序目前已经循环处理了"&I&"次数据</div><br>"

strCodea="UploadFiles/News" '//需要查询是否包含的字符串
strCodeb="""""/UploadFiles/News" '//被替换的字符串
strCodec="""""http://www.jb51.net/uploadfiles/news" '//替换字符串

Set rs = server.CreateObject("adodb.recordset")
rs.open "select content From news where id="&I&" and siteid=1 order by id desc",conn,1,1
If not(rs.eof or rs.bof) then

Content=rs("content")
Num=instr(content,strCodea)
If Num>0 then
If right(left(content,Num),2)="""""/" then
content=replace(content,strCodeb,strCodec)
end if
end if

end if
Rs.close

II=I+1
response.write("<meta http-equiv=""refresh"" content=""0;url=?I="&I""">")
Set rs = Nothing
%>

以上就是爱站技术频道小编介绍的ASP 循环导入导出数据处理 不使用缓存,相信认真看完的朋友都已经懂了,大家可以分享给其他朋友们学习哦。


原文链接:https://js.aizhan.com/develop/asp/11597.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:ASP正则表达式清除HTML指定标签的方法

下一篇:aspjpeg组件通用加水印函数代码