I'm trying to call the HttpServerUtuility.URLDecode function in C# using Visual Studio 2005, but it can't be found. I'm using System.Web
properly, but the class doesn't seem to be there. Do I need to add some sort of reference to my project?
A few points:
System.Web
assemblyHttpServerUtility
, not HttpServerUtuility
)UrlDecode
, not URLDecode
)Getting an instance is likely to be the hardest part, unless you're in ASP.NET - it doesn't have any public constructors or a static property to fetch an instance. Usually you'd use HttpContext.Server
. An alternative is to use HttpUtility.UrlDecode
, which is a static method. (Again, you'll need a reference to System.Web
.)
Add a reference to the System.Web assembly.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With