Url encoding quotes and spaces

后端 未结 3 679
太阳男子
太阳男子 2020-12-23 21:11

I have some query text that is being encoded with JavaScript, but I\'ve encountered a use case where I might have to encode the same text on the server side, and the encodin

3条回答
  •  不思量自难忘°
    2020-12-23 21:50

    UrlPathEncode doesn't escape " because they don't need to be escaped in path components.

    Uri.EscapeDataString should do what you want.

提交回复
热议问题