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.
ValidateRequest=falseat the top? – Neil Knight May 11 '11 at 15:53