首页 > 网站 > 建站经验 > 正文

asp 特殊字 符屏蔽代码

2019-11-02 15:30:41
字体:
来源:转载
供稿:网友

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,st

世界近代史[www.9-39.com/html/world/]
rlen,more,url)
if len(str)>strlen then
  str=left(str,strlen) & "......"
End if
if (len(str)>strlen) and more then
  str=str+"&nbsp;&nbsp;&nbsp;[url="+url+"]点这里查看详情[/url]"
End if
cutstr=str
End function

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表