I have a situation where the user is able to enter any characters they want in a URL query string.

Example:

http://localhost/default.aspx?ID=a‡jljglkjg

How can I accept special characters such as ‡, ˆ, and † in asp.net from a URL query string? I am finding that when I attempt to retrieve these URL query string these special characters gets replaced with a “?”.

Note: The user inputs these query string into the URL.

link|improve this question

65% accept rate
why not make UrlEncode ? is this not permitted ? And second, how you try to retrieve this characters - with what function ? – Aristos Jul 20 '11 at 20:38
I am using Request.QueryString to retrieve these characters. – m0g Jul 20 '11 at 20:40
feedback

3 Answers

URLs can only be sent over the Internet using the ASCII character-set.

Those characters will always be excluded, you need to find another way to do it.

link|improve this answer
I have a legacy application using classic ASP which is able to correctly take in this query string and display it back out again. – m0g Jul 20 '11 at 20:41
feedback

This URL is wrong according to RFC.

  • If they are using browser, it would normally do the ecndoing required.
  • If it is done by JavaScript, use encodeURIcomponent
  • If it is a C# app, using HttpUtility.UrlEncode here
link|improve this answer
How is it possible that classic ASP can process this request correctly but not asp.net? – m0g Jul 20 '11 at 20:42
Also caret(^) is a valid request but that also gets replaced with a question mark. Why is that? – m0g Jul 20 '11 at 20:44
ASP can since it probably cleans it up before processing. With ^ I think gets confused. – Aliostad Jul 20 '11 at 21:02
In the case of asp.net then is it possible to clean it up before processing as well or solve this problem somehow? – m0g Jul 20 '11 at 21:04
It could be. Have a look at URL-Rewrite. – Aliostad Jul 20 '11 at 21:10
feedback

See http://www.w3schools.com/tags/ref_urlencode.asp for more information about valid URLs and encoding special characters.

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.