5. Views 폴더의 TagHelperDemo 폴더에 PagingHelperDemo.cshtml이라는 이름으로 뷰 페이지를 생성한 후 다음 코드와 같이 기존에 없던 태그를 요청하고 속성에 값을 입력한다. DnnPaging 식으로 태그 헬퍼를 구현했으면 dnn-paging 형태로 표현된다. 이는 태그 헬퍼에 구현한 속성들이 태그로 표현될 때도 똑같이 적용된다. PageIndex 속성은 page-index 속성으로 사용된다.
▼ Views/TagHelperDemo/PagingHelperDemo.cshtml
@addTagHelper *, DotNetNote
<h3>페이징 헬퍼 테스트</h3>
<dnn-paging-helper url=”@Context.Request.Path”
page-index=‘Convert.ToInt32(Context.Request.Query[“Page”])’
page-size=“10”
record-count=“155”
search-mode=“false”
search-field=“Name”
search-query=“홍길동”>
</dnn-paging-helper>
<dnn-paging-helper url=”@Context.Request.Path”
page-index=‘Convert.ToInt32(Context.Request.Query[“Page”])’
page-size=“10”
record-count=“70”
search-mode=“true”
search-field=“Name”
search-query=“홍길동”>
</dnn-paging-helper>