query string parameters

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

Is there a list of what characters /, |, \, @, :, ;, {, whatever can be used
in a query string without all browsers (mozilla, ie, opera) freaking out?

Thanks in advance.
Mark
 
I'am sure you can find one on the W3C site, but chances are, you don't need
to. The HttpUtility.UrlEncode() static method will translate all such
characters in any string into URL-Encoding for those characters.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Very useful. Thanks!

Kevin Spencer said:
I'am sure you can find one on the W3C site, but chances are, you don't need
to. The HttpUtility.UrlEncode() static method will translate all such
characters in any string into URL-Encoding for those characters.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Back
Top