2013-11-26 97 views
1

在我的ASP.Net MVC 4應用程序中,我想發送一個模型到一個特定的視圖。這裏是僞代碼 -將模型傳遞給視圖名稱在ASP.Net MVC 4

public ActionResult Index() 
    { 
     A_Model model=new A_Model(); 
     return View(model, "ViewName"); 
    } 

有什麼辦法可以做到嗎?

謝謝。

回答

4

使用

return View("ViewName", model); 
相關問題