手机
当前位置:查字典教程网 >编程开发 >ASP教程 >asp 特殊字符屏蔽代码
asp 特殊字符屏蔽代码
摘要:functionstrreplace(str)ifstr=""thenstrreplace=strelsestrreplace=replac...

function strreplace(str)
if str = "" then
strreplace = str
else
strreplace = replace(str,"'","''")
end if
end function
检测数字函数
function check_num(str)
dim i
For i = 1 To Len(str)

if Asc(Mid(str, i, 1)) < 48 or Asc(Mid(str, i, 1)) > 57 then
check_num=false
exit function
else
check_num=true
end if
Next
end function

function cutstr(str,strlen,more,url)
if len(str)>strlen then
str=left(str,strlen) & "......"
End if
if (len(str)>strlen) and more then
str=str+" [url="+url+"]点这里查看详情[/url]"
End if
cutstr=str
End function

【asp 特殊字符屏蔽代码】相关文章:

asp html代码转安全ascii代码

关于处理GET方式提交的含有特殊字符的参数

asp防止网页刷新代码

ASP中一个字符串处理类

asp中FSO复制文件代码

asp中COM组件中如何连接数据库的代码

一段ASP 伪静态代码

asp 常用函数用法

在asp中通过vbs类实现rsa加密与解密的代码

asp缓存类

精品推荐
分类导航