要解决的问题:
将下面的url作为一个参数传到其他的页面
1 http://domain/de.apx?uid=12&page=15
2 url后面的参数中出现汉字等,如: ….aspx?title=起重机
在出现上面的情况的时候,必须经过一个rul编码和解码的过程,否则会出现错误.
代码如下:
1//传值
2string temp = ” <a href=add.aspx?url=” +server.urlencode( skin.page.request.url.absoluteuri )+ “&title=” +server.urlencode( skin.page.header.title )+ “>添加到收藏夹</a>”);
3
4//在另外一个文件中取从上面传的值
5if (request.querystring[“url”] != null)
6 {
7 string url = server.urldecode(request.querystring[“url”].tostring());
8 this.txtaddress.text = url;
9 }
10 if (request.querystring[“title”] != null)
11 {
12 string title = server.urldecode(request.querystring[“title”].tostring());
13 this.txttitle.text = title;
14 }
http://www.cnblogs.com/waitu/archive/2006/08/15/477123.html