■ HtmlHelperPartialExtensions 클래스의 Partial 확장 메소드를 사용해 부분 뷰(Partial View)를 표시하는 방법을 보여준다.
▶ Views/Test/_PagePartial1.cshtml
1 2 3 |
<p>부분 페이지 1</p> |
▶ Views/Test/_PagePartial2.cshtml
1 2 3 |
<p>부분 페이지 2</p> |
▶ Views/Test/Index.cshtml
1 2 3 4 5 6 7 |
@{ Layout = null; } <p>HtmlHelperPartialExtensions 클래스 : Partial 확장 메소드를 사용해 부분 뷰(Partial View) 표시하기</p> <hr /> @Html.Partial("_PagePartial1") @Html.Partial("~/Views/Test/_PagePartial2.cshtml") |