예제 #1
0
        protected void LinkbuttonPrev_Command(object source, System.Web.UI.WebControls.CommandEventArgs e)
        {
            IPaginatedList productList = this.NPetshopState.CurrentList;

            productList.PreviousPage();
            DataBind();
        }
예제 #2
0
        private void LinkbuttonPrev_Command(object source, CommandEventArgs e)
        {
            IPaginatedList productList = this.NPetshopState.CurrentList;

            productList.PreviousPage();
            DataBind();
        }
예제 #3
0
        private void LinkbuttonPrev_Command(object source, System.Web.UI.WebControls.CommandEventArgs e)
        {
            IPaginatedList productList = this.WebLocalSingleton.CurrentList;

            productList.PreviousPage();
            this.CurrentController.NextView = WebViews.PRODUCTS_BY_CATEGORY;
        }