Getting list of parameters in this url

a1jit

Regular
Joined
Aug 19, 2005
Messages
89
Hi Guys,

In asp.net, lets say i have the following url
Code:
URL = "http://localhost/RuleDatabaseAPI/getTechnologyClassName.aspx?group=Assembly&subgroup=Fiducial Analysis"


If i issue the following command
Request.QueryString["group"]

I get "Assembly"

If i issue the following command
Request.QueryString

I get the whole url back


What if i have to get all the list of parameters
Meaning i want to know list of parameters being sent

If i take the above url as example, is the any command which return to me "group" and "subgroup" since that are the only two parameters in this
URL

Thank you very much for any help..
 
Last edited:
Back
Top