在我的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");
}