程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> ASP 循環導入導出數據處理 不使用緩存

ASP 循環導入導出數據處理 不使用緩存

編輯:關於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
%>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved