2018年6月28日 星期四

[ASP.NET] 將字串轉換成 HTML 編碼字串

往只要帶入中文字,或將中文字存放至Cookie中,需進行編碼。

在Server端中,以HttpUtility.UrlEncode(string)編碼,以HttpUtility.UrlDecode(string)解碼。

string encode = HttpUtility.UrlEncode("中文字");
string decode = HttpUtility.UrlDecode(encode);

在Client端中,以JavaScript的escape(string)編碼,以unescape(string)解碼。

var encode = escape("中文字");
var decode = unescape(encode);

沒有留言:

張貼留言