Example #1
0
        protected void gvContainer_RowDeleting(object sender, GridViewDeleteEventArgs e)
        {
            int containerId        = (int)gvContainer.DataKeys[e.RowIndex].Value;
            ContainerRepository cr = new ContainerRepository();

            cr.Delete(containerId);

            gvContainer.EditIndex  = -1;
            gvContainer.DataSource = GetContainers(this._bookingId);
            gvContainer.DataBind();
        }