que pasa con este ERROR URGEEEEE

09/08/2004 - 17:23 por raul | Informe spam
Saludos :

miren tengo este codigo

Dim cn As SqlConnection = New SqlConnection
(connectionString)

Dim strSQL As String = "SELECT CVEUSR, PASUSR FROM
COPUSERS WHERE CVEUSR ='" & usuario.Text & "'" & _
" AND (PASUSR = '" & password.Text & "'"

comando = New SqlCommand(strSQL, cn)
cmd = New SqlDataAdapter(comando)
dt = New DataTable()
cmd.Fill(dt)
n = dt.Rows.Count

Y ME ENVIA EL SIGUIENTE ERROR

Login failed for user '(null)'. Reason: Not associated
with a trusted SQL Server connection.
Description: An unhandled exception occurred during the
execution of the current web request. Please review the
stack trace for more information about the error and where
it originated in the code.

Exception Details: System.Data.SqlClient.SqlException:
Login failed for user '(null)'. Reason: Not associated
with a trusted SQL Server connection.

Source Error:


Line 54: ' Dim ds As DataSet = New DataSet()
Line 55: dt = New DataTable()
Line 56: cmd.Fill(dt) AQUI ES EL ERROR
Line 57: n = dt.Rows.Count
Line 58: If n > 0 Then


Gracias espero me puedas ayudar
 

Leer las respuestas

#1 Eugenio Serrano
09/08/2004 - 17:44 | Informe spam
Tienes mal el String de conexion...

Pero ten mucho cuidado con ese Select !! Estas dejando la puerta abierta
para SQL Injection.
Nunca confies en lo que puede ingresar un usuario. Valida que usuario.Text
no tenga ' ni " ya que pueden cerrar la cadena con ' e ingresar codigo SQL
en el campo usuario

Saludos,
Eugenio Serrano
NDSoft Consultoria y Desarrollo
MS MVP ASP.Net
Voluntario Ineta Latam (www.ineta.org/latam)

"raul" escribió en el mensaje
news:2d0d01c47e24$d99e9e30$
Saludos :

miren tengo este codigo

Dim cn As SqlConnection = New SqlConnection
(connectionString)

Dim strSQL As String = "SELECT CVEUSR, PASUSR FROM
COPUSERS WHERE CVEUSR ='" & usuario.Text & "'" & _
" AND (PASUSR = '" & password.Text & "'"

comando = New SqlCommand(strSQL, cn)
cmd = New SqlDataAdapter(comando)
dt = New DataTable()
cmd.Fill(dt)
n = dt.Rows.Count

Y ME ENVIA EL SIGUIENTE ERROR

Login failed for user '(null)'. Reason: Not associated
with a trusted SQL Server connection.
Description: An unhandled exception occurred during the
execution of the current web request. Please review the
stack trace for more information about the error and where
it originated in the code.

Exception Details: System.Data.SqlClient.SqlException:
Login failed for user '(null)'. Reason: Not associated
with a trusted SQL Server connection.

Source Error:


Line 54: ' Dim ds As DataSet = New DataSet()
Line 55: dt = New DataTable()
Line 56: cmd.Fill(dt) AQUI ES EL ERROR
Line 57: n = dt.Rows.Count
Line 58: If n > 0 Then


Gracias espero me puedas ayudar

Preguntas similares