All articles(网络文学目录) All Pictures(图片目录) All Softwares(软件目录)

 
url传递中文的方法_[Asp.Net教程]

Writer: delv Article type: Programming skills(编程技巧) Time: 2014/1/23 3:13:05 Browse times: 346 Comment times: 0

url传递中文的方法_[Asp.Net教程]


Head photo

Go homepage
Upload pictures
Write articles

url传递中文的方法_[Asp.Net教程]

传递中文之前,将要传递的中文参数进行编码,在接收时再进行解码。
传递时编码:
复制C#代码保存代码string keyword=this.txtSeek.Text.Trim();
this.Response.Redirect("~/product/product_list.aspx?keyword="+Server.UrlEncode(keyword));
如果此时传递的是中文"我",则地址栏显示
复制代码保存代码...product/product_list.aspx?keyword=%e6%88%91
接收时解码:
复制C#代码保存代码string keyword=Server.UrlDecode(Request.QueryString["KeyWord"]);

来源:CNBLOGS





There are 0 records,
Comment:
Must be registered users to comment(必须是注册用户才能发表评论)

Disclaimer Privacy Policy About us Site Map
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.