Upgrading from version 3

Top  Previous  Next

Upgrading from DbNetTime 3 is simply a question of installing version 4 and then assigning the connection string from the web.config file in the DbNetTime 3 installation folder.  In addition the values in the authentication mode and identity impersonate attributes should be copied over. Finally change the home directory in the DbNetTime IIS application to point to the DbNetTime 4 installation folder.

DbNetTime 3 web.config file

<appSettings>
 ...
 <add key="DbNetTimeDb" value="Server=DBSERVER;Database=DbNetTime;Uid=sa;Pwd=password;" />
 ...
</appSettings>
<system.web>
 ...
 <identity impersonate="true"/>
 <authentication mode="Forms">
     ...
</system.web>

 

DbNetTime4 web.config file

<connectionStrings>
 <add name="DbNetTime" connectionString="Server=DBSERVER;Database=DbNetTime;Uid=sa;Pwd=password;"/>
</connectionStrings>
<system.web>
 ...
 <identity impersonate="true"/>
 <authentication mode="Forms">
     ...
</system.web>