HttpUtility.UrlEncode in a windows application

  • Thread starter Thread starter Anton Sommer
  • Start date Start date
A

Anton Sommer

Hello folks,


I normally do ASP and in ASP projects there is
System.Web.HttpUtility.HtmlDecode()

but I can't find it in my windows application. So how can it be done
otherwise or where can it be found in a windows project.



Thank you



Anton
 
I normally do ASP and in ASP projects there is
System.Web.HttpUtility.HtmlDecode()

but I can't find it in my windows application. So how can it be done
otherwise or where can it be found in a windows project.

Just include a reference to System.Web.Dll and use the HttpUtility class
as normal.
 
Thank you Patrick

that was it should have known it myself that simple.


Thanks


Anton
 
Back
Top