Ejemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     statusMessage = this.Master.FindControl("LblStatus") as Label;
     if (!IsPostBack)
     {
         statusMessage.Visible = false;
         if (RequisitionLogic.HasDelegate(DisbursementLogic.GetCurrentDep()))
         {
             ShowCurrentDelegate();
         }
         else
         {
             MultiView1.ActiveViewIndex = 2;
             BindDdl();
         }
     }
 }