asp.net中进行URL编码处理

发布时间:2020-09-20编辑:脚本学堂
asp.net中进行URL编码处理

问题:
将下面的URL作为一个参数传到其他的页面
1.http://domain/do.apx?uid=12&page=15
2.url后面的参数中出现汉字等,如: ....aspx?title=脚本学习
以上情况,必须经过一个RUL编码和解码的过程,否则会出现错误。

代码:
//传值
string temp = " <a href='Add.aspx?url=" +Server.UrlEncode( skin.Page.Request.Url.AbsoluteUri )+ "&title=" +Server.UrlEncode( skin.Page.Header.Title )+ "'>添加到收藏夹</a>");
//在另外一个文件中取从上面传的值
if (Request.QueryString["url"] != null)
{
    string url = Server.UrlDecode(Request.QueryString["url"].ToString());
    this.txtAddress.Text = url;
}
if (Request.QueryString["title"] != null)
{
    string title = Server.UrlDecode(Request.QueryString["title"].ToString());
    this.txtTitle.Text = title;
}