User-1061167628 posted
I am assuming that it can't find the database with the necessary tables. Here is what I did on 2 PCs with success. I apologize if some of this sounds mundane but I want to make sure anyone else viewing this post follow my logic.
1- Installed SQL Server Express 2005
3- I launched the management studio to insure I could see the default SQL instance
4- I ran aspnet_regsql.exe from C:\Windows\Microsoft.Net\Framework\v2.0.50727\aspnet_regsql.exe
*This installed the database "aspnetdb" with the following tables
dbo.aspnet_Applications
dbo.aspnet_Membership
dbo.aspnet_Paths
dbo.aspnet_PersonalizationAllUsers
dbo.aspnet_PersonalizationPerUser
dbo.aspnet_Profile
dbo.aspnet_Roles
dbo.aspnet_SchemaVersions
dbo.aspnet_Users
dbo.aspnet_UsersInRoles
dbo.aspnet_WebEvent_Events
5- In the Management Studio I opened the script file included with the starter kit (timetracker-add.sql)
6- I selected the aspnetdb in the database selection to the left of Execute
7- Executed the script and it built the following tables in the aspnetdb database
dbo.aspnet_starterkits_ProjectCategories
dbo.aspnet_starterkits_ProjectMembers
dbo.aspnet_starterkits_Projects
dbo.aspnet_starterkits_TimeEntry
Hope this helps get it working for you,
-Kirk