Exemplo n.º 1
0
        private void DisplayPCRecords()
        {
            clsPCProductCollection Record = new clsPCProductCollection();

            PC.DataSource = Record.ProductsList;
            PC.DataBind();
        }
Exemplo n.º 2
0
        protected void PC_PageIndexChanging(object sender, GridViewPageEventArgs e)
        {
            PC.PageIndex = e.NewPageIndex;
            clsPCProductCollection Record = new clsPCProductCollection();

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