string str =Server.UrlEncode("程序");
string strURL = "http://www.baidu.com?word="+str;
用上面的方式来传中文.
用下面方式来解析:
Server.UrlDecode("字符串")
Request.QueryString出现的问题
最新推荐文章于 2024-04-14 22:38:53 发布
string str =Server.UrlEncode("程序");
string strURL = "http://www.baidu.com?word="+str;
用上面的方式来传中文.
用下面方式来解析:
Server.UrlDecode("字符串")