示例#1
0
        protected void CancelDelegationBtn_Click(object sender, EventArgs e)
        {
            string          currentdep      = DisbursementLogic.GetCurrentDep();
            DDelegateDetail currentdelegate = RequisitionLogic.GetLatestDelegate(currentdep);
            string          fullname        = RequisitionLogic.GetDelegateName(currentdelegate);

            RequisitionLogic.CancelDelegate(currentdelegate);
            MultiView1.ActiveViewIndex = 2;
            BindDdl();
            statusMessage.Text      = fullname + "'s delegation has been cancelled.";
            statusMessage.Visible   = true;
            statusMessage.ForeColor = Color.Green;
        }