HTML编码
Posted yangan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML编码相关的知识,希望对你有一定的参考价值。
string str = "%3D1%26"; string newstr = Server.UrlDecode(str); Response.Write(newstr);
输出结果为: =1&
不过你这应该是Url编码的,如果是HTML编码的应该用Server.HtmlEncode();
用 HttpUtility.HtmlDecode()也是可以的,不过我习惯用Server类
以上是关于HTML编码的主要内容,如果未能解决你的问题,请参考以下文章