Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am recieving the rather self explanatory error:

A potentially dangerous Request.Path value was detected from the client (*).

the issue is that my url contains a *:

http://localhost:3286/Search/test*/0/1/10/1

This url is used to populate a search page where 'test*' is the search term and the rest of the url relates to various other filters.

My question is if there is a simple solution to allow me to add these special characters as search terms?

I have tried including the following in the web.config but it has no effect on if the error message is displayed.

Should I be manually encoding / decoding the special characters?

Is there a best practice for doing this? I would like to try and avoid using a query string but i guess it is an option.

The application itself is a c# asp.net webforms application that uses routing to produce the nice URL above.

Any suggestions would be a great help.

share|improve this question
Does your page have ValidateRequest=false at the top? – Neil Knight May 11 '11 at 15:53

3 Answers

up vote 11 down vote accepted

The * character is not allowed in the path of the URL, but there is no problem using it in the query string:

http://localhost:3286/Search/?q=test*

It's not an encoding issue, the * character has no special meaning in an URL, so it doesn't matter if you URL encode it or not. You would need to encode it using a different scheme, and then decode it.

For example using an arbitrary character as escape character:

query = query.Replace("x", "xxx").Replace("y", "xxy").Replace("*", "xyy");

And decoding:

query = query.Replace("xyy", "*").Replace("xxy", "y").Replace("xxx", "x");
share|improve this answer

If you're using .NET 4.0 you should be able to allow these urls via the web.config

<system.web>
    <httpRuntime requestPathInvalidCharacters="&lt;,&gt;,%,&amp;,:,\,?" />
</system.web>

Note, I've just removed the asterisk (*), the original default string is:

<httpRuntime requestPathInvalidCharacters="&lt;,&gt;,*,%,&amp;,:,\,?" />

See this question for more details.

share|improve this answer

You should encode the route value and then (if required) decode the value before searching.

share|improve this answer
Thanks for your response. Do you mean effectivley doing a replace on items such as * and then replacing them back when you are reading it? – Prib May 11 '11 at 16:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.