<%
rem 檢查sql字符串中是否有單引號,有則進行轉(zhuǎn)化
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
%>
以上資料由動網(wǎng)先鋒(http://www.aspsky.net)整理制作,轉(zhuǎn)載請說明出處!