퇴근5분전

페이징 컨트롤러를 만들었던것을 올림.

invalid-file

cs파일

invalid-file

ascx파일


개선 할점 : 흠 사용할때 좀 복잡했던것으로 기억함.( 디자인모드에서 이벤트 등록이 안됨 )

   protected void Page_Load(object sender, EventArgs e)
    {
        PageNavigator1.PageClick += new ClickEvent(PageNavigator1_PageClick);
       
    }

    void PageNavigator1_PageClick(PageEventArgs e)
    {
        throw new Exception("The method or operation is not implemented.");
    }

이렇게 페이지마다 등록해서 썼던걸로 기억함.