Hi
I recently purchased Asp.net Databases using
Vb
I am having difficulty connecting to MSDE keep getting login error for user.(I am using Visual Studio.net)
This is the error
Login failed for user 'FRANK\ASPNET'
[SqlException: Login failed for user 'FRANK\ASPNET'.]
System.Data.SqlClient.ConnectionPool.GetConnection (Boolean& isInTransaction) +472
System.Data.SqlClient.SqlConnectionPoolManager.Get PooledConnection(SqlConnectionString options, Boolean& isInTransaction) +372
System.Data.SqlClient.SqlConnection.Open() +384
sqlconnect.WebForm1.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\sqlconnect\webform1.aspx.cs:28
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +73
This is what i do
String strConnection ="server=FRANK\\NETSDK;database=northwind;integrat ed security=true";
SqlConnection objConnection = new SqlConnection(strConnection);
objConnection.Open
objConnection.Close
Does anyone have suggestions on how to connect to MSDE(microsoft sql 2000)
Or would anyone have the database Bids that is used in chapter 12
of the book written in an Access file.
Thanks