inc.asp

来自「一个相当好的电话管理程序」· ASP 代码 · 共 21 行

ASP
21
字号
<%
'检测字符串参数
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 + =
减小字号Ctrl + -
显示快捷键?