Function IRequest(R_Para)
Para = Request(R_Para)
If IsNumeric(Para) = false Or Para="" Then
Response.write "参数不正确"
Response.end
Else
IRequest = Para
End if
End Function
用于替换ASP中原来的Request
Function IRequest(R_Para)
Para = Request(R_Para)
If IsNumeric(Para) = false Or Para="" Then
Response.write "参数不正确"
Response.end
Else
IRequest = Para
End if
End Function
用于替换ASP中原来的Request