响应 重定向到其他站点
本文关键字:站点 其他 重定向 响应 | 更新日期: 2023-09-27 18:30:19
我的应用程序有以下路径:
computername.com/Site1
我有一个下拉菜单,当值更改时,它应该将网站重定向到这个:
computername.com/Site2
我的问题是,当我这样做时
string url = string.Format("computername.com/" + dropDownValue);
Response.Redirect(url);
我被重定向到computername.com/Site1/computername.com/Site2
能做什么方法来实现我想要的行为?
谢谢!
尝试:
string url = string.Format("http://computername.com/" + dropDownValue);
Response.Redirect(url);
发生这种情况是因为您之前构建的 URL 被识别为相对的而不是绝对的。