📄 inc.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 + -