汉字参数解码问题
<a href='ERPsjthrow.aspx?code=<%# Eval("market_code") %>&type=<%# Eval("errortype") %>'
market_code 和 errortype 是两个参数,但是errortype 的内容是汉字的,接收页面接收的都是乱码,用了type=<%=sever.URLencode(rsk("errortype"))%>也没成功,不知道是不是格式写的不对, 麻烦高手给个写法,谢谢。
------解决方案--------------------
改成<%#Server.UrlEncode(Eval("errortype").ToString())%>
------解决方案-------------------- HttpUtility.UrlEncode()加码 HttpUtility.UrlDecode()解码
------解决方案--------------------HttpUtility.HtmlDecode() HttpUtility.HtmlEncode() 这是对字符串加解码
------解决方案--------------------支持一楼