I am new to ASP.NET and I am using this tutorial http://www.codeproject.com/Articles/470107/ASP-NET-MVC-Part-Introduction to learn some basics.
I have created a project using Visual Studio 2012. I then try to run the program in debug mode for the first time. I then get an error that I have encountered in winforms, i.e Could not load file or assembly 'MySql.Web, Version=6.7.4.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d' or one of its dependencies.
I have made sure that MySql.Web are added in references.
I have also added this to the Web.config
<system.data>
<DbProviderFactories>
<clear />
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.7.4.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
</DbProviderFactories>
</system.data>
As I'm new to ASP.NET, I have noticed that creating the project added a connection string that I did not specify in the Web.config.
<connectionStrings>
<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=aspnet-SoundSource-20140312214649;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnet-SoundSource-20140312214649.mdf" providerName="System.Data.SqlClient" />
</connectionStrings>
What do I need to do in order to view the home page on my browser correctly?