a1jit Posted April 18, 2006 Posted April 18, 2006 (edited) Hi Guys, In asp.net, lets say i have the following url 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.. Edited April 18, 2006 by a1jit Quote
Administrators PlausiblyDamp Posted April 18, 2006 Administrators Posted April 18, 2006 Request.QueryString.AllKeys is probably what you are after. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.