无论我做什么,分隔查询字符串参数的“&”都会被编码。
// 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 编码吗?
我如何让它不理会那个分隔符?