protected void btnLogin_Click(object sender, EventArgs e) { try { ValidaUserRequest request = new ValidaUserRequest(); ValidaUserResponse response = new ValidaUserResponse(); request.user = txtUsuario.Text; request.pass = Security.Encrypt(txtPass.Text); if (request != null) { response = RisService.getLoginUser(request); if (response != null) { if (response.Success) { Session["UserRISAxon"] = response.mdlUser; Session["lstVistas"] = response.lstVistas; Label1.Text = "Usuario Correcto."; Log.EscribeLog("Usuario logueado: " + response.mdlUser.vchUsuario, 1, "LOGIN"); Usuario = response.mdlUser; //ScriptManager.RegisterStartupScript(Page, Page.GetType(), "modalLogin", "$('#modalLogin').modal('hide');", true); actualizarEstudios(); } else { Log.EscribeLog("Mensaje de error: " + response.mensaje, 2, "LOGIN"); lblMensaje.Text = "Mensaje de error: " + response.mensaje; } } else { Log.EscribeLog("Verificar la información", 2, "LOGIN"); lblMensaje.Text = "Verificar la información"; } } else { Log.EscribeLog("Verificar la información", 2, "LOGIN"); lblMensaje.Text = "Verificar la información"; } } catch (Exception eLogin) { Log.EscribeLog("Existe un error en btnCancelLogin_Click: " + eLogin.Message, 3, "Usuario"); } }
protected void btnLogin_Click(object sender, EventArgs e) { try { ValidaUserRequest request = new ValidaUserRequest(); ValidaUserResponse response = new ValidaUserResponse(); request.user = txtUsuario.Text; request.pass = Security.Encrypt(txtPass.Text); if (request != null) { response = RisService.getLoginUser(request); if (response != null) { if (response.Success) { Session["UserRISAxon"] = response.mdlUser; Session["lstVistas"] = response.lstVistas; Log.EscribeLog("Usuario logueado: " + response.mdlUser.vchUsuario, 1, "LOGIN"); Response.Redirect(URL + "/Default.aspx", false); lblMensaje.Text = "Usuario Correcto."; } else { Log.EscribeLog("Mensaje de error: " + response.mensaje, 2, "LOGIN"); lblMensaje.Text = "Mensaje de error: " + response.mensaje; } } else { Log.EscribeLog("Verificar la información", 2, "LOGIN"); lblMensaje.Text = "Verificar la información"; } } else { Log.EscribeLog("Verificar la información", 2, "LOGIN"); lblMensaje.Text = "Verificar la información"; } } catch (Exception ebt) { Log.EscribeLog("Existe un error en btnLogin_Click: " + ebt.Message, 3, "Login"); } }