You access it like this in
VB.NAT:
Request.Item("paramName")
or like this in CS:
Request["paramName"]
If you want to access the querystring values, you can access it thru the querystring collection of the request:
Request.QueryString...
This way it won't have to look thru all the different collections that are in Request for the value.