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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top