当前位置: 网学 > 编程文档 > ASP > 正文

推荐下天枫常用ASP函数封装,推荐大家使用

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/16
:密码检验
''参 数:str ----字符串
''返回值:true无误,false有误
''****************************************************
Public Function CheckPassword(Str)
Dim pass
CheckPassword=true
If Str <> "" Then
Dim Rep
Set Rep = New RegExp
Rep.Global = True
Rep.IgnoreCase = True
''匹配字母、数字、下划线、点号
Rep.Pattern="[a-zA-Z0-9_\.]+$"
Pass=rep.Test(Str)
Set Rep=nothing
If not Pass Then CheckPassword=false
End If
End Function

''****************************************************
''函数名:CheckEmail
''作 用:邮箱格式检测
''参 数:str ----Email地址
''返回值:true无误,false有误
''****************************************************
Public function CheckEmail(email)
CheckEmail=true
Dim Rep
Set Rep = new RegExp
rep.pattern="([\.a-zA-Z0-9_-]){2,10}@([a-zA-Z0-9_-]){2,10}(\.([a-zA-Z0-9]){2,}){1,4}$"
pass=rep.Test(email)
Set Rep=Nothing
If not pass Then CheckEmail=false
End function

''--------------信息提示----------------------------
''****************************************************
''函数名:Alert
''作 用:弹出对话框提示
''参 数:msg ----对话框信息
'' gourl ----提示后转向哪里
''返回值:无
''****************************************************
Public Function Alert(msg,goUrl)
msg = replace(msg,"''","\''")
If goUrl="" Then
goUrl="history.go(-1);"
Else
goUrl="window.location.href=''"&goUrl&"''"
End IF
Response.Write ("<script language=""JavaScript"" type=""text/javascript"">"&vbNewLine&"alert(''" & msg & "'');"&goUrl&vbNewLine&"</script>")
Response.End
End Function

''****************************************************
''函数名:GoBack
''作 用:错误信息提示
''参 数:str1 ----信息提示标题
'' str2 ----信息提示内容
'' isback ----是否显示返回
''返回值:无
''****************************************************
Public Function GoBack(Str1,Str2,isback)
If Str1="" Then Str1="错误信息"
If Str2="" Then Str2="请填写完整必填项目"
If isback="" Then
Str2=Str2&" <a href=""javascript:history.go(-1)"">返回重填</a></li>"
else
Str2=Str2
end if
Response.Write"<div style=""margin-left:5px;border:1px solid #0066cc;width:98%""><div style=""height:22px;font-weight:bold;color : white;font-size:14px;background:#799AE1;background:url(images/th.gif);;text-align:left;line-height:20px;padding:3px;"">"&Str1&" </div><div style=""line-height:50px;background:#F7F7F7;vertical-align:middle;font-size:14px;width:100%""><div style=""color:red;font:50px/50px 宋体;float:left;width:5%"
  • 上一篇资讯: asp #include命令
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号