Is there a difference between Server.UrlEncode and HttpUtility.UrlEncode?
|
feedback
|
|
| |||
|
feedback
|
|
Having had significant headaches with these methods before, I recommend you avoid any variant of Let's see...
But my personal favorite has got to be HttpUtility.UrlPathEncode - this thing is really incomprehensible. It encodes:
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 | |||||||||||||||||
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 | ||||
|
feedback
|
|
Server.UrlEncode() is there to provide backward compatibility with Classic ASP,
Is equivalent to:
| |||
|
feedback
|