Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/09/2015, 17:56
jmfmagnum
 
Fecha de Ingreso: julio-2014
Mensajes: 116
Antigüedad: 10 años, 4 meses
Puntos: 1
Respuesta: Login básico con aspx C# y SQL Server

Llegue a este mensaje buscando como hacer login que nadie contesto mi mensaje

Código ASP:
Ver original
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. using System.Data.SqlClient;
  8.  
  9.  
  10. public partial class Login : System.Web.UI.Page
  11. {
  12.     SqlCommand comando;
  13.     protected void Page_Load(object sender, EventArgs e)
  14.     {
  15.  
  16.     }
  17.     protected void Button2_Click(object sender, EventArgs e)
  18.    
  19.  
  20.         {
  21.             string usuario, pass;
  22.      
  23.             usuario = txtUsuario.Text;
  24.             pass = txtClave.Text;
  25.      
  26.             SqlConnection miconexion = new SqlConnection("Data Source=PORTATIL-PC;Initial Catalog=crud;Persist Security Info=True;User ID=sa;Password=123456");
  27.             miconexion.Open();
  28.  
  29.             comando = new SqlCommand("SELECT * FROM usuario WHERE usuario='" + usuario + "'' AND clave='" + pass + "'", miconexion);
  30.  
  31.      
  32.             if (comando.ExecuteNonQuery() > 0 )
  33.             {
  34.                 Response.Redirect("menu.aspx");
  35.             }
  36.             else
  37.             {
  38.                 Response.Write("No se encontro usuario");
  39.             }
  40.         }
  41.  
  42.  
  43.    
  44. }
y tengo un error de syntasix
diciendo : "Unclosed quotation mark after the character string ''."