I have this
string test = HttpUtility.HtmlDecode(\"http://test.com/Folder1/Folder2/my%20view.aspx\");
When I look into test it still has %20
HttpUtility.HtmlDecode not decoding "%20", use HttpUtility.UrlDecode to decode "%20"