I'm trying to connect to a local SQL Server DB the project I am developing. I'm using the following connection string:
Initial Catalog=reqsql;Data Source=DEV;Integrated Security=SSPI
where DEV is the name of my local pc. I've also tried using Data Source=(local) instead of Data Source=DEV.
But I get the following error:
I can log in to the same db using an access adp and VB6 with no problem using integrated windows security - but not for ASP.NET.
Does anybody have a clue to what the problem is?
David
Initial Catalog=reqsql;Data Source=DEV;Integrated Security=SSPI
where DEV is the name of my local pc. I've also tried using Data Source=(local) instead of Data Source=DEV.
But I get the following error:
Code:
Login failed for user 'DEV\ASPNET'.
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 'DEV\ASPNET'.
I can log in to the same db using an access adp and VB6 with no problem using integrated windows security - but not for ASP.NET.
Does anybody have a clue to what the problem is?
David