I need to submit requests to my application as part of the URL, which contain quoted strings, such as
/search/"my query"
this is throwing an error, as outlined in the following question:
How to include quote characters as a route parameter? Getting "Illegal characters in path" message
I'd like to implement the suggestion by Scott Hanselman to alter the
<httpRuntime requestPathInvalidCharacters="<,>,*,%,:,&,\" />
value to not include the quote character. But this doesn't appear to be avaialable in .net 3.5.
Could somebody point out how to get this to work?