7 references to UrlDecode
System.Web (3)
Abstractions\HttpServerUtilityWrapper.cs (1)
127return _httpServerUtility.UrlDecode(s);
httpserverutility.cs (1)
1032output.Write(UrlDecode(s));
UI\Page.cs (1)
6286_relativeFilePath = Server.UrlDecode(UrlPath.MakeRelative(filePath, s));
System.Web.Mobile (4)
UI\MobileControls\Adapters\HtmlFormAdapter.cs (3)
432name = Page.Server.UrlDecode(queryString.Substring(si, ti-si)); 433value = Page.Server.UrlDecode(queryString.Substring(ti+1, i-ti-1)); 438value = Page.Server.UrlDecode(queryString.Substring(si, i-si));
UI\MobileControls\MobilePage.cs (1)
510_relativeFilePath = Server.UrlDecode(UrlPath.MakeRelative(filePath, s));