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

📄 inc.asp

📁 一个相当好的电话管理程序
💻 ASP
字号:
<%
'检测字符串参数
function checkstr(str)
if str="" or isnull(str) then
exit function
else
checkstr=replace(str,"'","''")
end if
end function
'检测数字型参数
function checknum(num)
if num="" or isnull(num) then
exit function
elseif not isnumeric(num) then
response.write("非法参数?程序中止运行!!")
response.end
else
checknum=int(num)
end if
end function
%>

⌨️ 快捷键说明

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