我有一个post
操作,一旦成功,我想将用户重定向到另一个网站。
这是我的行动代码:
[HttpPost]
public ActionResult RegistartionComplete(Customer customer)
{
if (ModelState.IsValid)
{
db1.Entry(customer).State = EntityState.Modified;
db1.SaveChanges();
return Redirect(@"http://www.google.com");
}
return View(customer);
}
问题是在执行db1.SaveChanges()
之后我被重定向到同一页面(根据网址)但是有Internet Explorer cannot display the webpage
消息。在使用断点进行测试时,我发现return Redirect(@"http://www.google.com");
已执行,但它只是将我返回到相同的操作视图。
答案 0 :(得分:0)
看起来好像一切都应该按预期运行,并且在我的测试中运行良好。我建议尝试以下方法: