标签: c# asp.net-mvc
我有简单的Controller Action并且知道如何将模型传递给渲染视图但是如何在此视图中获取masterName?
public ActionResult Index() { var model =1; return View("Index","some master",model); }