Пример #1
0
        private void CustomerSIPTransactionDelete()
        {
            foreach (GridViewRow gvr in this.gvSIPReject.Rows)
            {
                if (((CheckBox)gvr.FindControl("chkId")).Checked == true)
                {
                    int StagingID = int.Parse(gvSIPReject.DataKeys[gvr.RowIndex].Values["CMFSCS_ID"].ToString());

                    uploadsCommonBo.DeleteMFSIPTransactionStaging(StagingID);

                    //ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "pageloadscript", "loadcontrol('RejectedSystematicTransactionStaging','login');", true);
                    BindRejectedSIPGrid(processId);
                }
            }
        }