0

how to handle double quotes in asp.net mvc url?

Peter
  • 3
  • 2

1 Answers1

3

By URL encoding them (transforming them to %22 which is the url encoded equivalent of ").

Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928
  • I'm getting "Illegal characters in path." for something like `/search/%22things%22/` -- http://stackoverflow.com/questions/2087246/howto-allow-illegal-characters-in-path – drzaus Apr 07 '16 at 19:59