コード例 #1
0
        private void DisplayPCRecords()
        {
            clsPCProductCollection Record = new clsPCProductCollection();

            PC.DataSource = Record.ProductsList;
            PC.DataBind();
        }
コード例 #2
0
        protected void PC_PageIndexChanging(object sender, GridViewPageEventArgs e)
        {
            PC.PageIndex = e.NewPageIndex;
            clsPCProductCollection Record = new clsPCProductCollection();

            PC.DataSource = Record.ProductsList;
            PC.DataBind();
        }