例子如下:
在js中 用encodeURI()对中文转码:
$(this).tree('options').url = encodeURI(encodeURI("../CountryStaManager/GetCountry?city=" + “中文”));
传到后台,用.net的 System.Web.HttpUtility.UrlDecode 转回中文:
public string GetCountry(string city)
{
city = System.Web.HttpUtility.UrlDecode(city);
}