服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - ASP教程 - ASP 循环导入导出数据处理 不使用缓存

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

2019-09-14 20:34互联网 ASP教程

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

  1. <%  
  2. '//数据处理部分  
  3. dim Content,Num,I,strCodea  
  4.  
  5. I=request("I")  
  6. If len(I)=0 then I=0  
  7. Response.write "<br><div align=center>该程序目前已经循环处理了"&I&"次数据</div><br>"  
  8.  
  9. strCodea="UploadFiles/News" '//需要查询是否包含的字符串  
  10. strCodeb="""""/UploadFiles/News" '//被替换的字符串  
  11. strCodec="""""//www.zzvips.com/uploadfiles/news" '//替换字符串  
  12.  
  13. Set rs = server.CreateObject("adodb.recordset")  
  14. rs.open "select content From news where id="&I&" and siteid=1 order by id desc",conn,1,1  
  15. If not(rs.eof or rs.bof) then  
  16.  
  17. Content=rs("content")  
  18. Num=instr(content,strCodea)  
  19. If Num>0 then  
  20. If right(left(content,Num),2)="""""/" then  
  21. content=replace(content,strCodeb,strCodec)  
  22. end if  
  23. end if  
  24.  
  25. end if  
  26. Rs.close  
  27.  
  28. II=I+1  
  29. response.write("<meta http-equiv=""refresh"" content=""0;url=?I="&I""">")  
  30. Set rs = Nothing  
  31. %> 

延伸 · 阅读

精彩推荐