当参数为带参数的url时怎么办?
Posted 菜根谭
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了当参数为带参数的url时怎么办?相关的知识,希望对你有一定的参考价值。
比如地址为:http://www.baidu.com/index.aspx?url=http://www.baidu.com/info.aspx?id=1&type=1,用Request["url"]取出的值为 http://www.baidu.com/info.aspx?id=1,丢失了type=1。
正确方法是传参前先对参数进行编码,就可以避免出现如上问题。
”http://www.baidu.com/index.aspx?url=” + HttpUtility.UrlEncode("http://www.baidu.com/info.aspx?id=1&type=1")
以上是关于当参数为带参数的url时怎么办?的主要内容,如果未能解决你的问题,请参考以下文章