Once again, writing down the problem and walking away from the computer for a little bit helped me fix my own problem. I had to edit the ASP.NET configuration through IIS Manager to change the db from pointing to the ASPNETDB.MDF to my SQL 2000 Server. This has fixed the SQL Express error in previous post but has led to new error. New error is this:
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: INSERT statement conflicted with COLUMN FOREIGN KEY constraint 'FK_Ads_Members'. The conflict occurred in database 'Classifieds', table 'classifieds_Members', column 'Id'.
The statement has been terminated.
Now to fix this one and I should be good to go. If anyone has any clue as to why this would happen I would like to hear it. Also FYI, I put the aspnet table into the Classifieds db so I only have to deal with one db vs two...
Thanks
Dean