当前位置: 代码迷 >> ASP.NET >> 不更改web.config如何获取1.aspx?city=深圳
  详细解决方案

不更改web.config如何获取1.aspx?city=深圳

热度:6414   发布时间:2013-02-25 00:00:00.0
不更改web.config怎么获取1.aspx?city=深圳
Request.QueryString获取中文的问题,怎么获取“深圳”这两个字,
不能更改web.config里
requestEncoding="gb2312"  
responseEncoding="gb2312" 
已经写死了,也不好从发送页面想办法了,
  
请问怎么从 1.aspx?city=深圳 获取"深圳"啊

------解决方案--------------------------------------------------------
首先要对参数编码
"1.aspx?city="+Server.UrlEncode("深圳");
  相关解决方案