I'm trying to encode a query string using the HttpUtility.UrlEncode
method
The string is:
www.example.come?a=1&b='mia'&c=33
the output is:
www.example.come%3fa%3d1%26b%3d'mia'%26c%3d33
Why did the quotation marks not get encoded and is there a way for me to ensure that they do?