ASP.NET - QUE PASA CON ESTE ERROR

 
Vista:

QUE PASA CON ESTE ERROR

Publicado por raul (13 intervenciones) el 10/08/2004 16:43:49
Login failed for user 'usuario.text'.
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 'usuario.text'.

si supuestamete esta hecha la conexion

Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
sin imagen de perfil
Val: 56
Bronce
Ha mantenido su posición en ASP.NET (en relación al último mes)
Gráfica de ASP.NET

RE:QUE PASA CON ESTE ERROR

Publicado por Yamil Bracho (1136 intervenciones) el 10/08/2004 19:25:30
Cual es tu string de conexion ? Tienes varias combinaciones como :

Standard Security:

"Data Source=Aron1;Initial Catalog=pubs;User Id=sa;Password=asdasd;"
- or -
"Server=Aron1;Database=pubs;User ID=sa;Password=asdasd;Trusted_Connection=False"
(booth connection strings produces the same result)


Trusted Connection:

"Data Source=Aron1;Initial Catalog=pubs;Integrated Security=SSPI;"
- or -
"Server=Aron1;Database=pubs;Trusted_Connection=True;"
(booth connection strings produces the same result)

(use serverName\instanceName as Data Source to use an specifik SQLServer instance, only SQLServer2000)
Connect via an IP address:

"Data Source=190.190.200.100,1433;Network Library=DBMSSOCN;Initial Catalog=pubs;User ID=sa;Password=asdasd;"
(DBMSSOCN=TCP/IP instead of Named Pipes, at the end of the Data Source is the port to use (1433 is the default))

Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

RE:QUE PASA CON ESTE ERROR

Publicado por raul (13 intervenciones) el 10/08/2004 22:45:23
mira probe todas las conexiones que me dices en este
y no funciona ninguna me aparece el mensaje siguiente

Public conexion As String = ("Server=192.2.1.169,1433;Database=politica';Trusted_Connection=true;")
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar