Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アクションに基づいて、ASP.NET MVC4 で 1 つのアクションに対して 2 つ以上のビューが必要です。大まかな値が変わるため、別のアクションを作成したくありません。
条件は動的な値に基づいています
アクションの結果として返されるビュー名を指定できます。
public ActionResult YourAction() { if(yourCondition) return View("View1Name"); else return View("View2Name"); }