crackon
Programmer
- Jun 17, 2009
- 26
I'm revisiting some ole ASP code and wondered what actual this does?
Set params = Request.QueryString
Set params = Request.QueryString
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
'Get the values
Rid = Request.QueryString("ReportID")
NbrParams = Request.QueryString("NumParams")
If NbrParams > 0 then
ValStr = Request.QueryString ("Pvals")
NameStr = Request.QueryString ("Pnames")
arrVals = Split(ValStr,";")
arrNames = Split(NameStr,",")
End If