더북(TheBook)

5. 뷰 컴포넌트를 테스트할 페이지를 작성하자. Controllers 폴더에 ViewComponentDemoController.cs 파일로 컨트롤러를 추가하고 다음과 같이 코드를 입력한다.

▼  /Controllers/ViewComponentDemoController.cs

using Microsoft.AspNetCore.Mvc;

namespace DotNetNote.Controllers
{
  public class ViewComponentDemoController : Controller
  {
      public IActionResult Index()
      {
          return View();
      }
      
      /// <summary>
      /// CopyrightViewComponent 출력 데모
      /// </summary>
      /// <returns></returns>
      public IActionResult CopyrightDemo()
      {
          return View();
      }
  }
}

신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.