我有一个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()
执行之后我被重定向到同一页面(根据url)但带有一条Internet Explorer cannot display the webpage
消息。当使用断点进行测试时,我看到它return Redirect(@"http://www.google.com");
已执行,但它只是将我返回到相同的操作视图。