⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mobile.asp

📁 模块及功能: 1.汽车新闻 分类.查询.翻页 2.出售信息 搜索.评估.地区展示.发布.展示.固顶.刷新 3.求购信息 发布.展示.固顶.刷新 3.加盟商家管理 注册.登录.信
💻 ASP
字号:



<%

Function CheckString(String1)
    Dim TempStr, Length, Result, I, Char, Ascii
    TempStr = TRIM(String1)
    Length = Len(TempStr)
    Result = False
    For I = 1 To Length
        Char = Mid(TempStr,I,1)
        Ascii = Asc(Char)
        If  Ascii > 47 and ascii< 58 Then    
            Result = True
        Else
            Result = False
            	Exit For
        End If
    Next
    CheckString = Result
End Function


 mobile=trim(request("mobile")) 
 if mobile <> "" then
 %>
 <%
if left(mobile,2) <> "13" then
%>
<b><font color="#FF0000">×</b>请输入正确的手机号码!&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font>
<%
response.end
end if
%>
<%
if len(mobile) <> 11 then
%>
<b><font color="#FF0000">×</b>手机号码长度在11个字符!&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font>
<%
response.end
end if
%>
<%
if InStr(mobile,",") >= 1 OR  InStr(mobile,"%") >=1 OR InStr(mobile,"<") >=1 OR InStr(mobile,">") >=1  OR InStr(mobile,"=") >=1  OR InStr(mobile,"'") >=1 then%>
<b><font color="#FF0000">×</b>手机号码中不能有%、'、=、&lt;和&gt;等非法字符!&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font>
<%
response.end
end if
%>
<%
 a= CheckString(mobile)
if a = false then

%>
<b><font color="#FF0000">×</b>手机号码的格式不正确,请重新填写!&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font>
<%
response.end
end if
%>
<b><font color="#008000">√</font></b>
<%else%>
<b><font color="#008000">√</font></b>您的手机号码,可以不填!
<%end if%> 
 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -