protected void Registrar_Click(object sender, EventArgs e)
 {
     try
     {
         int i=0;
         UsuarioBL a = new UsuarioBL();
         //String a, String n, String p, String t, String d, String e, Int32 r
         String es;
         if(CheckBox1.Checked==true){
             es = "A";
         } else {
             es = "I";
         }
         i = a.Registrar(Txt_Alias.Text.Trim(),CboTipUsuario.Text,es,Convert.ToInt32(Txt_Empleado.Text.Trim()));
         if (i > 0)
         {
             LblResult.CssClass = "text-success";
             LblResult.Text = "La operación se realizó exitosamente.";
         }
         else
         {
             LblResult.CssClass = "text-error";
             LblResult.Text = "Ocurrio un error, Comuníquese con soporte tecnico.";
         }
     }
     catch (Exception) { }
 }
 protected void Button1_Click(object sender, EventArgs e)
 {
     UsuarioBL usuarioBL = new UsuarioBL();
     String strUsuario = txtUsername.Value;
     String strPassword = txtPassword.Value;
     if (usuarioBL.existeUsuario(strUsuario, strPassword))
     {
         Session["s"] = strUsuario;
         Response.Redirect("~/Menu.aspx");
     }
 }
        public void Listar()
        {
            List<Usuario> ar = new UsuarioBL().List();
            if (ar.ToList().Count() > 0)
            {

                GridView1.DataSource = ar.ToList();
                GridView1.DataBind();
                //Formato();
            }
            else
            {
                GridView1.DataSource = null;
                GridView1.DataBind();
            }
        }
 protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
 {
     try
     {
         int i;
         UsuarioBL a = new UsuarioBL();
         int index = Convert.ToInt32(e.RowIndex);
         i = a.Eliminar(GridView1.Rows[index].Cells[2].Text.ToString());
         if (i > 0)
         {
             Listar();
         }
     }
     catch (Exception)
     {
     }
 }