decode %3F to '?' in URL using UriBuilder

3.1k Views Asked by At

I am building a url and using it to point to one of my controllers to do some work. I got this error when I passed the url having %3F isntead of ?

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

The Url generated by UriBuilder looks like this:

http://mywebsite.com:7606/DoWork/DoChanges%3FEmployeeRequestId=17&ExtNumber=6340&ChangeOrderId=26&Operation=2&TargetExt=4357&Index=2

When I change %3F to ? after 'DoChanges' it works fine but it does not like it when its %3F. How can I decode this? I need the parameters visible so that service desk can read the link if they need to. so I do not want to encode the entire thing.

1

There are 1 best solutions below

2
On

I can't post this in a comment, so I'll write it here. The solution of your answer can be found here .

As quoted from here, you just have to use these your settings in your config file

<system.web>
    <httpRuntime requestPathInvalidCharacters="" requestValidationMode="2.0" />
    <pages validateRequest="false" />
</system.web>