Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using the following code I get a nice formatted string:

Request.QueryString.ToString

Gives me something like: &hello=world&microsoft=sucks

But when I use this code to clone the collection to another object (of the same type) I get the Type() back from the ToString() method instead.

System.Collections.Specialized.NameValueCollection variables = new System.Collections.Specialized.NameValueCollection(Request.QueryString);
if (!string.IsNullOrEmpty(variables["sid"]))
    variables.Remove("sid");
Response.Write(variables.ToString());

Is there a tidier way to output it rather than looking and building the string manually?

share|improve this question
5  
IF microsoft suck like you wrote in the example, why do you use Microsoft technology? – Patrick Desjardins Oct 23 '08 at 14:30
5  
I was joking chill – tigermain Oct 23 '08 at 14:34

6 Answers

up vote 5 down vote accepted

You can also use Reflector to extract the HttpValueCollection class into your own, and use it then.

share|improve this answer
I'm giving you the win here hmemcpy as its probably the most appropriate but it doesnt solve my problem, guess I'll just have to do it the dirty way – tigermain Oct 23 '08 at 14:44
Actually, you pretty much just need the HttpValueCollection.ToString(bool urlencoded, IDictionary excludeKeys) method. – James Curran Oct 23 '08 at 14:44
Yup, just like James said, the HttpValueCollection overrides ToString() to create the query string with HttpEncoded values and ampersands. You can use Add/Remove on the values, and later call ToString() to create your new query string. – hmemcpy Oct 23 '08 at 15:19
Can you tell me about Reflector ? is it the software which you can see the assemblies or something different? – Barbaros Alp Feb 9 '09 at 20:40
1  
Yes Reflector lets you open .net Dll's/Exes and will do test to reproduce the code in it, there are plugins which will allow you to do other things like disassemble to a project – tigermain Feb 10 '09 at 9:20

HttpValueCollection is internal, but you can use "var" to declare it without extract it with reflector.

var query = HttpUtility.ParseQueryString(Request.Url.Query);
query["Lang"] = myLanguage; // Add or replace param
string myNewUrl = Request.Url.AbsolutePath + "?" + query;
share|improve this answer
1  
this is awesome. – Nick May 24 '11 at 21:39
Nice tip, thanks :) – Luke Bennett Dec 1 '11 at 16:55
Nice idea! But var isn't doing anything for you here, that's just virtual method dispatch. NameValueCollection values = HttpUtility.ParseQueryString(...) will work just as well. Also I'd add a comment to explain what you're doing. – Ben Challenor Jan 5 '12 at 12:22
Also HttpUtility.ParseQueryString("") works nicely if you want an empty one. – Ben Challenor Jan 5 '12 at 12:24
+1. ¿But why not NameValueCollection instead of var? BTW, it works for me. – Dani Rodríguez Jul 11 '12 at 7:35
show 1 more comment

Because it is actually a special NVC that is of type HTTPValueCollection. So when you call .ToString on it, it knows how to format it correctly.

share|improve this answer

Why do you want to copy the QueryString collection into a new NameValueCollection?

    if (!string.IsNullOrEmpty(Request.QueryString["sid"]))
        Request.QueryString.Remove("sid");

Yes indeed, i am wrong, it is read only. So the essence is to use the Remove Method on your NameValuecollection:

System.Collections.Specialized.NameValueCollection variables = new System.Collections.Specialized.NameValueCollection(Request.QueryString);
if (!string.IsNullOrEmpty(variables["sid"]))
    variables.Remove("sid");
share|improve this answer
Because I cannot remove from the Querystring collection as it is readonly – tigermain Oct 23 '08 at 14:33
corrected my answer ;-) – Johannes Hädrich Oct 23 '08 at 14:34

If you don't absolutely need a NameValueCollection, A dictionary offers a lot of the same semantics:

var variables = Request.QueryString.OfType<DictionaryEntry>()
    .Where(entry => entry.Key != "sid")
    .ToDictionary(entry => entry.Key, entry => entry.Value);
share|improve this answer
1  
I think this won't work on query strings with duplicate keys. – Mauricio Scheffer May 21 '10 at 21:48

Request.QueryString actually return a HttpValueCollection object (which unfortuately, is internal to System.Web so you can't you it).

Nevertheless, HttpValueCollection is derived from NameValueCollection, and it's Remove() method remains intact, so you should be able to call Request.QueryString.Remove("sid");

share|improve this answer
Unfortunately you can't do that as it is a readonly collection – tigermain Oct 23 '08 at 14:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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