解决方法:
//传参数时
Response.Redirect("a.aspx?name"+Server.UrlEncode("我的名字"));
//接收参数时
String name = Server.UrlDecode(Request.QueryString["name"]);
解决方法:
//传参数时
Response.Redirect("a.aspx?name"+Server.UrlEncode("我的名字"));
//接收参数时
String name = Server.UrlDecode(Request.QueryString["name"]);