Tell me the best site to learn ASP.NET

G

Guest

Hi,
I am starter, I am interested to learn ASP.NET, can any one please tell me the best site to start with.
 
G

Guest

If you have installed Microsoft .NET Framework SDK.. Go to

Start >> Programs >> Microsoft .NET Framework SDK >> Samples and QuickStart Tutorials.
 
G

Guest

Dear John,
Thanks alot.. The site is really good.
I started learning ASP.NET.
In "Web Forms User Controls" chapter, there is a section called "Creating User Controls Programmatically". When I run this, it is showing this error.

Login failed for user 'PRABU\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 'PRABU\ASPNET'.


I tried all possibilities to correct this, but in vain. Please guide me.
 
G

Guest

Hi,
I have gone through your link, Please check the connection string and the database, whether the database MSDE or SQLServer exist. Then whether you have necessary permissions to access the database.

I think there is a problem in authentication. So, please use this connection string

SqlConnection myConnection = new SqlConnection("server=(local)\\NetSDK;database=pubs;Trusted_Connection=yes;User ID=PRABU;Password=XXXXXXX");
 
G

Guest

yah... now working.
Thanks

--
Thanks,
Prabu


John Paul. A said:
Hi,
I have gone through your link, Please check the connection string and the database, whether the database MSDE or SQLServer exist. Then whether you have necessary permissions to access the database.

I think there is a problem in authentication. So, please use this connection string

SqlConnection myConnection = new SqlConnection("server=(local)\\NetSDK;database=pubs;Trusted_Connection=yes;User ID=PRABU;Password=XXXXXXX");
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,053
Latest member
BrodieSola

Latest Threads

Top