1.0 and 1.1 .net framework coexistance

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
 
C

Cowboy \(Gregory A. Beamer\)

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!
**********************************************************************
 
S

Steve

Thanks
the client has now found an error in their code anyway
which has fixed the problem.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top