protected void Button1_Click(object sender, EventArgs e)
 {
     objBEL             = new MasterBEL();
     objDAL             = new ClassDAL();
     objBEL.designation = TextBox1.Text;
     Label1.Visible     = true;
     Label1.Text        = objDAL.AddDesignation(objBEL);
     GridView1.DataBind();
 }
 protected void Button1_Click1(object sender, EventArgs e)
 {
     Label1.Visible = true;
     if (DropDownList2.SelectedIndex == 0)
     {
         Label1.Text = "Select a Valid value";
     }
     else
     {
         objBEL             = new MasterBEL();
         objDAL             = new ClassDAL();
         objBEL.designation = TextBox1.Text;
         Label1.Visible     = true;
         Label1.Text        = objDAL.AddDesignation(objBEL);
         GridView1.DataBind();
     }
 }