∈鱼杆 ---我的鱼塘

执着,坚定,友爱,勇敢(www.pumaboyd.com)Live Message

导航

如何才能出现URL传中文乱码

Posted on 2007-05-08 23:53  ∈鱼杆  阅读(774)  评论(2编辑  收藏  举报

A页面代码

private void Button2_Click(object sender, System.EventArgs e)
        {
            Response.Redirect(
"B.aspx?name=数据库出错啦");
        }
都说建议要对后面的“数据库出错啦”要进行编码Server.UrlEncode 后在传。那为什么的我的就不用呢,到B页面的时候它的链接自动编码了
http://localhost/MyWork/UTF2GB2312/B.aspx?name=%e6%95%b0%e6%8d%ae%e5%ba%93%e5%87%ba%e9%94%99%e5%95%a6

请问这是什么原因。看到网上说这样回乱码,但我的没有。想知道如何才会有乱码
webconfig设置如下:
   <globalization
            requestEncoding="utf-8"
            responseEncoding="utf-8"
   />