在Postback上重定向到不同的页面

时间:2013-06-05 10:55:54

标签: asp.net-mvc-4

在我的MVC4项目中,我有一个布局视图,其中的表单已发布到ContactForm中的HomeController

@using (Html.BeginForm("ContactForm", "Home", FormMethod.Post))
{
      --actual form content goes here
   <input id="submit" type="submit" value="SUBMIT" class="pull-right" />
}

在我的ContactForm操作方法中,我再次重定向到Index操作方法,在方法中我将重定向到主页。

[HttpPost]
public ActionResult ContactForm(ContactModel model)
{
    try
    {
       --code goes here
    }
    catch (Exception ex)
    {
       --code goes here
    }
  return Index();
  //return RedirectToAction("Index", "Home");
}

但问题是它没有重定向到主页,而是重定向到ContactForm

下的HomeController操作方法
public ActionResult Index()
{
   return Redirect("www.homepage.com");
}

0 个答案:

没有答案