世界
美国
城市
网址
搜索
cuclife.com
>
IT
>
ASP
>
0
检查sql字符串中是否有单引号,有则进行转化.
网络整理 - 09-11
<%
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
%>
▪ ASP中FSO的神奇功能-使用FSO进行搜索
▪ ASP中FSO的神奇功能-用FSO进行内容管理
▪ 将ado方便的转化为XML文件
▪ SQLServer中单引号的两种处理技巧
▪ 几个对图形进行动态处理的dhtml代码
▪ 用SOAP和ASP进行服务器端更新
▪ 使用ASP和Word进行服务器端拼写检查
▪ 如何用asp进行base64加密