5. CategoryUserControl.ascx는 웹 페이지의 왼쪽 메뉴 영역을 담당할 부분 페이지다. 파일을 열고 다음과 같이 코드를 입력한다.
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="CategoryUserControl.ascx.cs" Inherits="DevUserControl.CategoryUserControl" %> 카테고리 들어오는 곳
6. CatalogUserControl.ascx는 웹 페이지의 내용 영역을 담당할 부분 페이지다. 파일을 열고 다음과 같이 코드를 입력한다.
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="CatalogUserControl.ascx.cs" Inherits="DevUserControl.CatalogUserControl" %> 카탈로그(Content) 들어오는 곳
7. CopyrightUserControl.ascx는 웹 페이지의 하단 메뉴 영역을 담당할 부분 페이지다. 파일을 열고 다음과 같이 코드를 입력한다.
<%@ Control Language=“C#” AutoEventWireup=“true” CodeBehind=“CopyrightUserControl.ascx.cs” Inherits=“DevUserControl.CopyrightUserControl” %> <div class=“text-center”> 카피라이트 들어오는 곳 </div>