码迷,mamicode.com
首页 > 其他好文 > 详细

Session的方法

时间:2014-09-03 10:55:16      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:des   http   io   使用   sp   html   on   c   htm   

 /*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的方法

标签:des   http   io   使用   sp   html   on   c   htm   

原文地址:http://www.cnblogs.com/ss977/p/3952976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!