当前位置: 首页 > 图文教程 > 网络编程 > ASP > Access通用-自动替换数据库中的字符串

ASP
ASP简单入门教程(2):ASP环境配置
ASP简单入门教程(3):ASP语法
ASP简单入门教程(4):ASP变量
ASP简单入门教程(5):ASP子程序
HTTP 500 - 内部服务器错误(补充内容)
ASP教程:IIS中配置多站点
ASP实例教程:Content Rotator (ASP 3.0)
ASP实例教程:Content Linking组件
ASP实例教程:Browser Capabilities组件
ASP实例教程:AdRotator组件
ASP实例教程:Dictionary对象
ASP实例教程:File对象
ASP实例教程:Drive对象
ASP实例教程:TextStream对象
关于学习ASP的20个测试题目
ASP实例教程:Server对象
ASP实例教程:Session对象
ASP实例教程:用户信息和服务器
asp教程:解决IIS安装问题
ASP网站数据库被挂木马的处理办法

ASP 中的 Access通用-自动替换数据库中的字符串


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 45 ::
收藏到网摘: n/a

       自己可以修改myreplace函数,实现复杂的替换.呵呵,好象用处不大.主要是看看如何读取access表和字段列表
  
  <%
  '####################################
  '替换数据库内容 lamking 2005-8-22
  'http://www.lamking.com QQ:628557
  '####################################
  Dim Db,Connstr,conn,rs,rs2,str1,str2,I
  str1="abcd" '要替换的字符串
  str2="1234" '替换为的字符串
  Db="lamking.mdb"
  Set conn=Server.CreateObject("ADODB.Connection")
  ConnStr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&server.mappath(Db)
  Conn.Open ConnStr
  Set rs = conn.OpenSchema(20)
   Do While Not rs.eof
   If rs("TABLE_TYPE")="TABLE" Then
   Set Rs2=Server.Createobject("adodb.recordset")
   Rs2.Open "select * from ["&rs("TABLE_NAME")&"]",conn,1,3
   Do While Not Rs2.Eof
   For I=0 to Rs2.fields.count-1
   If Rs2(i).Properties("ISAUTOINCREMENT") = False Then
   Rs2(Rs2(i).name)=Myreplace(Rs2(i).value)
   End If
   Next
   Rs2.Movenext
   Loop
   Rs2.Close
   Set Rs2=nothing
   End If
  Rs.Movenext
  Loop
  Rs.close
  Set Rs=nothing
  Conn.close
  Set Conn=nothing
  Response.Write"替换完成"
  Function myreplace(byval Tstr)
  If Tstr="" Or isnull(Tstr) Then
   Exit Function
  Else
   myReplace=replace(Tstr,str1,str2)
  End If
  End Function
  %>