示例#1
0
        private void BindBundlingProducts()
        {
            DbQueryResult bundlingProductList = ProductBrowser.GetBundlingProductList(new BundlingInfoQuery
            {
                PageIndex = this.pager.PageIndex,
                PageSize  = this.pager.PageSize,
                SortBy    = "DisplaySequence",
                SortOrder = SortAction.Desc
            });

            this.rptProduct.DataSource = bundlingProductList.Data;
            this.rptProduct.DataBind();
            this.pager.TotalRecords = bundlingProductList.TotalRecords;
        }