1.对URL编码
aspx:
//两个参数:需要编码的字符串 , 字符串编码的字符集
String aspxUrl=HttpUtility.UrlEncode("需要编码的字符串",System.Text.Encoding.GetEncoding("GB2312"));
asp:
username=CStr(Request.QueryString("user_name"))
aspUrl=server.URLEncode(username)
2.解码
aspx:
String aspxUrl=HttpUtility.UrlDecode(xxxx);
asp:
//asp接收aspx编码值时,就已经转换为可以识别的字符串,无需解码操作
//如果出现乱码,则需要改变编码的字符集
username=CStr(Request.QueryString("user_name"))