Accessing HttpUtility Class In C# Winforms
To use or access the HttpUtility class in C# winforms, do the following:
1. Add reference to System.Web dll
2. Use any methods available in HttpUtility class.
Cheers!
1. Add reference to System.Web dll
2. Use any methods available in HttpUtility class.
System.Web.HttpUtility.HtmlDecode(mystring); System.Web.HttpUtility.UrlDecode(mystring);
Comments
Post a Comment