-
Notifications
You must be signed in to change notification settings - Fork 1
/
Ingreso.aspx.cs
35 lines (33 loc) · 1.11 KB
/
Ingreso.aspx.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Drawing;
public partial class Ingreso : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void BtnIngreso_Click(object sender, EventArgs e)
{
String nombreUsuario = TbUsuario.Text.Trim();
String Password = TbContraseña.Text.Trim();
int returnValida;
DSClientes ds = DataAccsesClientes.buscarClientePorNombre(nombreUsuario.Trim(), out returnValida);
//Verificando si el usuario existe
if (returnValida > 0)
{
//Si existe, verificando si su password es correcto
if (ds.Clientes[0].Contraseña == Password.Trim())
{
//Le podemos dar acceso a nuestro sistema
//Eso significa que guaremos informacion del usuario en la session
Session["idUsuario"] = ds.Clientes[0].Clave_Cliente;
Response.Redirect("Default.aspx");
}
}
}
}