WEB开发网
开发学院WEB开发ASP 检查sql字符串中是否有单引号,有则进行转化. 阅读

检查sql字符串中是否有单引号,有则进行转化.

 2000-11-12 10:13:19 来源:WEB开发网   
核心提示:<% rem 检查sql字符串中是否有单引号,有则进行转化 function CheckStr(str) dim tstr,l,i,ch l=len(str) for i=1 to l ch=mid(str,i,1) if ch="'" thentstr=tstr+"'
<%
  rem 检查sql字符串中是否有单引号,有则进行转化
  function CheckStr(str)
    dim tstr,l,i,ch
  l=len(str)
  for i=1 to l
    ch=mid(str,i,1)
    if ch="'" then
   tstr=tstr+"'"
  end if
  tstr=tstr+ch
  next
  CheckStr=tstr
  end function
%>

Tags:检查 sql 字符串

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接