my_request.asp

来自「一个不错的个人商务网站的源码」· ASP 代码 · 共 16 行

ASP
16
字号
<%
Function my_request(ParaName,ParaType)
Dim ParaValue
ParaValue=Request(ParaName)
If ParaType=1 Then
  If Not isNumeric(ParaValue) Then
response.write "非法操作"
response.end
end if
Else
  ParaValue=replace(trim(ParaValue),"'","''")
End if
my_request=ParaValue
End function
%>

⌨️ 快捷键说明

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