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.
スタートページに含める必要のあるビューが自分のWebサイトにいくつかあります。ただし、Html.Renderactionを使用するだけで、マスターページとシバン全体がレンダリングされます。
コンテンツをレンダリングするにはどうすればよいですか?
いくつかの方法があります。
コントローラからPartialViewを返すことを確認してください。
return PartialView("MyView");
または、ビュー内でLayoutをString.Emptyまたはnullに設定できます。
@{ Layout=String.Empty; }