我的应用程序有这条路径:
computername.com/Site1
我有一个下拉列表,当值更改时,它应该将网站重定向到:
computername.com/Site2
我的问题是,当我这样做时
string url = string.Format("computername.com/" + dropDownValue);
Response.Redirect(url);
我被重定向到computername.com/Site1/computername.com/Site2
我可以采取什么方法来实现我想要的行为?
谢谢!
答案 0 :(得分:1)
尝试:
string url = string.Format("http://computername.com/" + dropDownValue);
Response.Redirect(url);
这是因为您之前构建的URL被识别为相对而非绝对。