2013年9月11日 星期三

[轉貼] 在C#控制台或Winform程序中如何編碼或解碼Html?

出處:http://www.cnblogs.com/anny-1980/articles/1168685.html

在Asp.net中可以使用Server.HTMLEncode和Server.URLEncode 將文本或URL的特殊字符編碼,
但在控制台或Winform程序中沒有辦法使用到這些方法,

解決辦法:
System.Web 命名空間
引用System.Web.Dll

HttpUtility.HtmlEncode(str);
HttpUtility.HtmlDecode(str);

HttpUtility.UrlEncode(str);
HttpUtility.UrlDecode(str);

沒有留言:

張貼留言