|
Table of Contents
RequirementsWindows 2000/XP/2003 IIS 5 or above .NET Framework 1.1
Installation
ConfigurationUnder Construction. The main configuration settings are located in the WEB.CONFIG file; and all the database connections are decalred in the DB_CONFIG.XML file. To use Access (the default), make the following changes: IN WEB.CONFIG <appSettings> < add key="dbConfig" value="c://inetpub/wwwroot/ndcms/db_config.xml"/><!-- <add key="dbType" value="MSSQL" /> <add key="dbDate" value="now()" /> </appSettings> IN DB_CONFIG.XML SET THE LOCATION OF YOUR ACCESS DATABASE <DataSource DataSourceId="MSACCESS" DataProviderId="OLEDB" ParamPrefix="@" DefConnStr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c://inetpub/wwwroot/ndCMS/common/db/nd_database.mdb" Description="My Description" /> To use SQL, make the following changes: IN WEB.CONFIG <appSettings> < add key="dbConfig" value="c://inetpub/wwwroot/ndcms/db_config.xml"/><add key="dbType" value="MSSQL" /> <!-- <add key="dbType" value="MSACCESS" /> </appSettings> IN DB_CONFIG.XML SET THE CONNECTION STRING FOR YOUR SQL DATABASE <DataSource DataSourceId="MSSQL" DataProviderId="SQLSERVER" ParamPrefix="@" DefConnStr="server=localhost;Trusted_Connection=true;database=NDCMS" Description="My Description" />
To use any other databases look up the documentation on MaxVirtual.Data Database wrapper.
LoginUse the following information to login for the first time: Copyright (C) Timothy Bell, 2005. All rights reserved. |