vote up 1 vote down star

Hopefully the answer is no, but are there any problems with using Request.Params instead of Request.QueryString for retrieving data in the query string in asp.net?

flag

4 Answers

vote up 1 vote down check

Not a gotcha as such, but just be aware that request.querystring is much lighter - request.params returns cookies, form variables, server variables and the querystring whereas request.querystring of course just returns the querystring value.

link|flag
vote up 0 vote down

Already answered in http://stackoverflow.com/questions/5706/when-do-request-params-and-request-form-differ

It talks about request.form but it is the same for request.querystring

link|flag
this is not the same question, the OP is asking about tricks to be aware – TStamper May 8 at 1:53
vote up 2 vote down

No, unless you happen to have Forms collection fields with the same field name as an argument name in the Query collection -- then you will get an array when you only expected a single key/value pair.

link|flag
vote up 0 vote down

No gotchas. Request.Params is just a bit more full featured.

Now, if you were serializing and saving it to the database, it would be wasteful of bytes, but thats about it.

link|flag

Your Answer

Get an OpenID
or

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