my_request.asp
来自「购物系统时尚版.强大的后台文章编辑器的功能」· ASP 代码 · 共 15 行
ASP
15 行
<%
Function my_request(ParaName,ParaType)
Dim ParaValue
ParaValue=Request(ParaName)
If ParaType=1 Then
If Not isNumeric(ParaValue) Then
response.write "非法操作"
end if
Else
ParaValue=replace(ParaValue,"'","''")
End if
my_request=ParaValue
End function
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?