首页 > 代码库 > Session的方法
Session的方法
/*Server.UrlEncode与HttpUtility.UrlEncode区别:
* 1、前者要改变编码方式需要到web.config中的globalization进行配置
* 2、后者默认使用的utf-8编码方式,如果想要改变编码方式,可以在第二个参数进行设置
*/
1.HtmlEncode和HtmlDecode
HtmlEncode会把html标签作为普通的字符处理
HtmlDecode会将html样式体现出来
String html="<h1>abc</h1>";
string encodeStr=Server.HtmlEncode(html);
Response.Write(encodeStr);
2.UrlEncode 和UrlDecode
string url = "abc你好";
//编码(将url进行编码,中文会编码成为字符)
string encodeUrl = HttpUtility.UrlEncode(url);
Response.Write(encodeUrl + "<br>");
//解码(将url进行解码,可以还原中文)
string decodeUrl = HttpUtility.UrlDecode(encodeUrl);
Response.Write(decodeUrl + "<br>");
Session的方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。