Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/03/2009, 15:02
uvavidf
 
Fecha de Ingreso: marzo-2009
Mensajes: 3
Antigüedad: 15 años, 9 meses
Puntos: 0
Respuesta: Problemas con autenticacion en WebForm

Se me olvido poner el codebehind es el siguiente:

protected void Autentificacion_Authenticate(object sender, AuthenticateEventArgs e)
{
string username = Autentificacion.UserName;
string password = Autentificacion.Password;

string strConexion = WebConfigurationManager.ConnectionStrings["PersonalConnectionString"].ConnectionString;

SqlConnection conexion = new SqlConnection(strConexion);
conexion.Open();

string sqlUser;
sqlUser = "SELECT Usuario, Contraseña FROM Usuarios ";
sqlUser += " WHERE (Usuario ='" + username + "')";
sqlUser += " AND (Contraseña ='" + password + "')";

SqlCommand cmd = new SqlCommand(sqlUser, conexion);

string CurrentName;

CurrentName = (string)cmd.ExecuteScalar();

if (CurrentName != null)
{
Session["UserAuthentication"] = username;
Session.Timeout = 1;
Response.Redirect("Default.aspx");
}
else
{
Session["UserAuthentication"] = "";
}
}

Si alguien me podria ayudar se lo agradeceria mucho