Dear Wrox
I have having a problem when I click on the Admin tab in that the error message below appears in the browser.
Compiler Error Message: BC30456: 'Theme' is not a member of 'ASP.management_default_aspx'.
Source Error:
Line 1: <%@ Page Language="
VB" MasterPageFile="~/AdminMaster.master" AutoEventWireup="false" CodeFile="Default.aspx.
vb" Inherits="_Default" title="CMS Management Home Page" %>
Line 2: <asp:Content ID="Content1" ContentPlaceHolderID="MainContentPlaceholder" Runat="Server">
Line 3: <h1>Welcome to the Wrox CMS</h1>
Source File: C:\inetpub\wwwroot\CMS\Management\Default.aspx Line: 1
I've also tried it in debug where a number of errors are thrown up.
The errors seem to relate to properties and classes not being found. A couple of samples are (from the 42 total) are:
Error 97 Make sure that the class defined in this code file matches the 'inherits' attribute, and that it extends the correct base class (e.g. Page or UserControl). C:\inetpub\wwwroot\CMS\Management\ContentList.aspx .
vb 7
Error 127 'Theme' is not a member of 'ASP.management_contentlist_aspx'. C:\inetpub\wwwroot\CMS\Management\ContentList.aspx 1
Error 128 'Title' is not a member of 'ASP.management_contentlist_aspx'. C:\inetpub\wwwroot\CMS\Management\ContentList.aspx 1
Error 129 'InitializeCulture' is not a member of 'ASP.management_contentlist_aspx'. C:\inetpub\wwwroot\CMS\Management\ContentList.aspx 1
My setup is as follows:
Windows XP Pro, IIS6, SQL Server 2005 Standard, VS2005 Professional.
I read another Message thread CMS - Can't Login where this problem was touched on but not really resolved. FYI I've downloaded the new DB and config files and updated the config file to reflect the SQL Standard connection as follows:
<connectionStrings>
<add name="Cms"
connectionString="Data Source=localhost\Development;
Initial Catalog=CMS;
User ID=CMSDevUser;
password=password"
providerName="System.Data.SqlClient" />
</connectionStrings>
This is the only change I've made to the config file.
Any help gratefully received.
Nick