Sunday, July 12, 2009

ASP Get Page Input (Form or QueryString)


Function GetParam(strLabel)
Dim retval : retval = ""
retval = Trim(Request.Form(strLabel))
If retval = "" Then
retval = Trim(Request.QueryString(strLabel))
End If
GetParam = retval
End Function

No comments:

Post a Comment