1.0 and 1.1 .net framework coexistance

  • Thread starter Thread starter steve
  • Start date Start date
S

steve

A client had an ASP.NET application that was working fully
using version 1.0 of the .NET framework until 1.1 of
the .NET framework was installed for our ASP.NET
application. After this one of the pages fails to connect
to the SQ Server database (error like 'The connection
string property has not been initialized....'.
Why should this happen if 1.0 and 1.1 should coexist side
by side?
Anybody any suggestions?

Steve
 
Follow the instructions to set this app to 1.0:
http://msdn.microsoft.com/library/en-us/dnhcvs03/html/vs03f6.asp

There are some breaking changes. The problem you are most likely having is
the install of 1.1 has the old app running under 1.1. By using aspnet_regiis
correctly, on this web app only, you will have it run under 1.0 until it can
be upgraded.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

**********************************************************************
Think Outside the Box!
**********************************************************************
 
Thanks
the client has now found an error in their code anyway
which has fixed the problem.
 
Back
Top