Here's what you need to do.
Install SQL Server Express 2005. You'll need SQL Server 2005 Management Studio and the SQL Server Surface Area Configuration. These tools will come in handy when troubleshooting
connections. A 'successful' install will provide both of the above.
Launch SQL Server Express 2005 Management Studio. Look for Server Type:Database Engine
and Server Name:.\SQLEXPRESS. Keep in mind during setup the .\SQLEXPRESS value may have your machine name as a prefix ie. dan\SQLEXRESS. Copy this value and paste it into the web.config file - connnectionstring = data source = dan\SQLEXPRESS in your MVC project.
As for ASP.NET MVC - Install the 3.5 framework and install ASP.NET MVC version 1.
Make sure the 3.5 framework is selected under your new MVC project. Running the project
will launch the built-in cassini web server ( not IIS ).
In the app - Register yourself. Verify under the app_data folder in your project to
see if a new .mdf file was created. This file gets created by the first user.
To quote ScottGu - Hope this helps ! Happy New Year !