Beispiel #1
0
    protected void gv_ReportList_RowDeleting(object sender, GridViewDeleteEventArgs e)
    {
        Guid reportid = new Guid(gv_ReportList.DataKeys[e.RowIndex]["ReportID"].ToString());

        Rpt_ReportBLL.DeleteViewTimes(reportid, (int)Session["UserID"]);
        BindRports();
    }