我在同一個控制器中創建了兩個視圖。問題是,我想在httppost完成後加載第二個視圖。ASP.NET MVC返回httpPost後的索引視圖
索引視圖
public ActionResult Index()
{
return View();
}
HttpPost
[HttpPost]
public ActionResult Index(AccountModel model)
{
return View("NEXTVIEW");
}
下一頁查看
public ActionResult NEXTVIEW(EpmloyeeModal model)
{
return View();
}
後HttpPost,我有廣告ded返回到nextview。而它總是返回到索引視圖。我試圖在不同的網站上找到這樣的場景,但找不到任何地方。
謝謝。
哦,我遲到了;( –