I know it's my fault, but I can't seem to get the catalog overwrite to work correctly. When I generated the DAL, I used the database name "smartWeekly". Well, that database was offline, so I wanted to use the backup "smartMonthly". I put this in my web.config file:
<configSections>
<section name="sqlServerCatalogNameOverwrites" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>
<sqlServerCatalogNameOverwrites>
<add key="smartWeekly" value="smartMonthly"/>
</sqlServerCatalogNameOverwrites>
...but still got the "user WebUser does not have access to database smartWEEKLY". I went through and changed the name of all "App.config" files in the DAL root folder spaces to App_OLD.config thinking they might be overridding the web.config, but that didn't help. What am I missing?
Oh, I'm using Adapter and SQL Server 2k.