📄 tel.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) or ascii=45 Then
Result = True
Else
Result = False
Exit For
End If
Next
CheckString = Result
End Function
tel=trim(request("tel"))
if tel <> "" then
if len(tel) <5 or len(tel) >15 then
%>
<b><font color="#FF0000">脳</b>鐢佃瘽鍙风爜闀垮害5-15 瀛楃
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -