예제 #1
0
        protected void btnLogin_Click(object sender, EventArgs e)
        {
            string email = txbUsuario.Text.Trim();
            string senha = txbSenha.Text.Trim();

            if (!IsPreenchido(email))
            {
                lblMensagem.Text = "Preencha o usuario";
                txbUsuario.Focus();
                return;
            }
            if (!IsPreenchido(senha))
            {
                lblMensagem.Text = "Preencha a senha";
                txbSenha.Focus();
                return;
            }

            EmployeeDB bd   = new EmployeeDB();
            Employee   func = new Employee();

            func = bd.Autentica(email, senha);
            if (!UsuarioEncontrado(func))
            {
                lblMensagem.Text = "Usuário não encontrado";
                txbUsuario.Focus();
                return;
            }
            Session["ID"] = func.Id;
            switch (func.Type)
            {
            case 1:
                Response.Redirect("Home.aspx");
                break;

            default:
                break;
            }
        }