when I add "%" character to the mvc url prject I get bad request from server , how to let such character to be allowed in the url I want this to work if possible
http://localhost:56203/Home/gf%test/194/184/w if I remove "%" it work fine
thanks
when I add "%" character to the mvc url prject I get bad request from server , how to let such character to be allowed in the url I want this to work if possible
http://localhost:56203/Home/gf%test/194/184/w if I remove "%" it work fine
thanks
The % character tells the web server that you have an encoded character. In order to include an actual % character, you need to encode it as %25: