Is there a difference between Server.UrlEncode and HttpUtility.UrlEncode?

link|improve this question

79% accept rate
feedback

6 Answers

up vote 37 down vote accepted

HttpServerUtility.UrlEncode will use HttpUtility.UrlEncode internally. There is no specific difference. The reason for existence of Server.UrlEncode is compatibility with classic ASP.

link|improve this answer
feedback

Having had significant headaches with these methods before, I recommend you avoid any variant of UrlEncode, and instead use Uri.EscapeDataString - at least that one has a comprehensible behavior.

Let's see...

HttpUtility.UrlEncode(" ") == "+" //breaks ASP.NET when used in paths, non-
                                  //standard, undocumented.
Uri.EscapeUriString("a?b=e") == "a?b=e" // makes sense, but rarely what you
                                        // want, since you still need to
                                        // escape special characters yourself

But my personal favorite has got to be HttpUtility.UrlPathEncode - this thing is really incomprehensible. It encodes:

  • " " ==> "%20"
  • "100% true" ==> "100%%20true" (ok, your url is broken now)
  • "test A.aspx#anchor B" ==> "test%20A.aspx#anchor%20B"
  • "test A.aspx?hmm#anchor B" ==> "test%20A.aspx?hmm#anchor B" (*note the difference with the previous escape sequence!*)

It also has the lovelily specific MSDN documentation "Encodes the path portion of a URL string for reliable HTTP transmission from the Web server to a client." - without actually explaining what it does. You are less likely to shoot yourself in the foot with an Uzi...

In short, stick to Uri.EscapeDataString

link|improve this answer
And unfortunately that still doesn't work when doing HTTP requests against some web servers -- Uri.EscapeDataString() doesn't encode "!" or "'", which differs from how most browser implementations of escape() work... – Chris R. Donnelly Aug 11 '09 at 20:30
1  
! and ' characters are not supposed to be encoded; but if a buggy webserver requires this, it's easy to workaround. Avoid javascript's escape function - it's inherently buggy (impossible to roundtrip, for one). See xkr.us/articles/javascript/encode-compare - but in short; you can use encodeUriComponent() instead, which behaves similarly to EscapeDataString - it predictably and reversibly encodes a string, and also does not encode ! and ' characters. – Eamon Nerbonne Aug 12 '09 at 8:35
1  
This is old, but the question got bumped to the front page, so.... The path part of a url string is the part between the domain and the ? or # in a url. – Powerlord Dec 23 '09 at 14:54
@R. Bemrose: sure, that is the case: but it doesn't explain the behaviour of UrlPathEncode. Presumably, it should never corrupt your url (which it does, not encoding %, for instance), and in any case, if your url is already correctly delimited into components by ? and # tokens, what's the point of further encoding? If the url path contains tokens that need encoding, then it's obviously not safe to pass the entire url to the encoding function - that's an invalid and perhaps corrupted url, almost by definition. In short, the function isn't specified and its most reasonable use is impossible. – Eamon Nerbonne Jan 26 '10 at 15:02
1  
@Tim: there might be several ? and who's to say which are to be encoded and which serve as separators? As to the space: in both cases the space is in the hash, so the presence or absence of a query-fragment shouldn't matter. And finally, it's inexcusable to corrupt an Uri as in the second example containing a %. The UrlPathEncode method is plain borked and should never be used. – Eamon Nerbonne May 31 '11 at 8:09
show 2 more comments
feedback

Keep in mind that you probably shouldn't be using either one of those methods. Microsoft's Anti-Cross Site Scripting Library includes replacements for HttpUtility.UrlEncode and HttpUtility.HtmlEncode that are both more standards-compliant, and more secure. As a bonus, you get a JavaScriptEncode method as well.

link|improve this answer
feedback

Server.UrlEncode() is there to provide backward compatibility with Classic ASP,

Server.UrlEncode(str);

Is equivalent to:

HttpUtility.UrlEncode(str, Response.ContentEncoding);
link|improve this answer
feedback

The same. Server.UrlEncode() calls HttpUtility.UrlEncode();

link|improve this answer
feedback

Only in the method name.

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.