不多说,直接代码,简单解释,自己去试。
1. js url = encodeURI(encodeURI(url))
c#后台string txtID = System.Web.HttpUtility.UrlDecode(request["TxtID"]);这种方式得到的非常正确。
2.js url = "Table.aspx?TxtID="+escape(escape(str))
c#后台string txtID = System.Web.HttpUtility.UrlDecode(Request["TxtID"]);
这种方式得到的字符之间空格是规律乱码,我需要拆分空格的字符串,空格乱码刚好用到,我使用的是这种方式。
C#后台使用Server.UrlDecode(),System.Web.HttpUtility.UrlDecode()都没成功。
有兴趣的可以试一下,如果有成功方式请评论贴出,相互学习。
IE,火狐,谷歌(Chrome)浏览器都没问题。