easyui-datagrid的url中的中文问题

前台:

easyui-datagrid的url中的中文问题_第1张图片

后台:
    string topictype = GetQueryStringString("topictype");
在Google浏览器下后台获取正常,但是在IE浏览器下:
在datagrid的url中传递中的对应后台获取“topictype”的值得时候获取的是乱码。

解决方案一:

修改前台url,

解决方案二:
传递参数最好不适用中文。

解决方案三:
前台在调用datagrid的使用参数使用:
 queryParams: { topictype: '创新型' },//-----post的方式提交

对应后台获取:
  string topictype = GetFormString("topictype");

你可能感兴趣的:(easyui-datagrid的url中的中文问题)