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

Server.UrlPathEncode和Server.UrlEncode的区别

时间:2014-09-28 16:55:33      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   使用   ar   sp   问题   on   c   

Server.UrlPathEncode默认使用的是utf-8编码而Server.UrlEncode默认为系统默认编码(一般是gb2312)

Server.UrlDecode默认使用系统编码解码。所以这里容易发生路径解码成乱码的问题。

 

Response.Write(Server.UrlDecode(Server.UrlPathEncode("中文")) & "<hr>") Response.Write(HttpUtility.UrlDecode(Server.UrlPathEncode("中文"), Encoding.UTF8) & "<hr>")

 

解决办法: 解码的地方使用utf-8编码。HttpUtility.UrlDecode(Server.UrlPathEncode(String),  Encoding.UTF8);

              或者编码的地方使用Server.UrlEncode(),编解码的默认编码方式都用gb2312;

 

 

URL编码: System.Web.HttpUtility.UrlEncode(string); Server.UrlEncode(string); System.Web.HttpUtility.UrlPathEncode(string); Server.UrlPathEncode(string);

UrlEncode与UrlPathEncode编码规范不一样 比如: UrlEncode对整个URL进行编码(即http://www.website.com/全部编码) UrlPathEncode对http://之后的内容进行编码(即www.website.com)

Server.UrlPathEncode和Server.UrlEncode的区别

标签:style   http   color   使用   ar   sp   问题   on   c   

原文地址:http://www.cnblogs.com/lh123/p/3998198.html

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