0

无论我做什么,分隔查询字符串参数的“&”都会被编码。

// sitecore ASP.NET server side ascx code...
string url = string.Format("http://other-domain.com/?a={0}&b={1}", "1", "2");
Response.Redirect(url);
// ...

给我的浏览器地址:

http://other-domain.com/?a=1&b=2

这不是我想要的,我只是想要:

http://other-domain.com/?a=1&b=2

是 Response.Redirect() 对我的“&”进行 HTML 编码吗?

我如何让它不理会那个分隔符?

4

1 回答 1

0

我确定一件事:这不是由 Response.Redirect() 或您发布的任何其他代码引起的。

实际代码中可能还有其他问题。

于 2012-04-04T07:27:42.113 回答