asp 验证用户名是否包含有非常字符的函数

网络编程 2021-07-05 10:58www.168986.cn编程入门
<%
'
'函数IsValidUserName(byVal UserName)
'参数UserName,用户名称
'作者阿里西西
'日期2007/7/15
'描述验证用户名是否包含有非法字符,不含非法字符返回true
'示例IsValidUserName(byVal UserName)
'
Function IsValidUserName(byVal UserName)
 Dim i,c
 IsValidUserName = True
 For i = 1 To Len(UserName)
  c = Lcase(Mid(UserName, i, 1))
  If InStr("$!<>?#^%@~`&();:+='""  ", c) > 0 Then
    IsValidUserName = False
    Exit Function
  End IF
 Next
End Function
%>

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by