I have url being passed to my page something like /default.apsx?id=123&user=justin

In my code I already have a request.querystring running to grab the id but I need also to grab the user how would i do this.

Thanks

Justin

link|improve this question

80% accept rate
Emm... Request.Params["user"] or Request.QueryString["user"] can help? Have you tried this? – RoBYCoNTe Mar 31 '11 at 16:17
feedback

2 Answers

string user = Request.QueryString["user"];
link|improve this answer
3  
the "as string" part is unnecessary, btw. QueryString is a NameValueCollection, which is a string, string collection. – Jonas Mar 31 '11 at 16:20
Your correct Jonas. Updated – Daryl Mar 31 '11 at 16:27
feedback

Request.QueryString["id"] and

Request.QueryString["user"]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.