码迷,mamicode.com
首页 > Web开发 > 详细

UrlEncode和UrlDecode

时间:2015-09-10 13:01:58      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
//编码
HttpUtility.UrlEncode(str);
HttpUtility.UrlEncode(str, 编码类型);

//解码
HttpUtility.UrlDecode(str)

//编码
Server.UrlEncode(str);

//解码
Server.UrlDecode(str);


区别:
HttpUtility.UrlEncode()默认是以UTF8对URL进行编码,
而Server.UrlEncode()则以默认的编码对URL进行编码。
例子

 

UrlEncode和UrlDecode

标签:

原文地址:http://www.cnblogs.com/nightsnow/p/4797188.html

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