Framework 1.1 and VS2002

hrabia

Well-known member
Joined
May 21, 2003
Messages
107
Location
Hamburg, Germany
Ive read that VS2002 compiles only against .NET Framework 1.0. But when I
start my Web project in VS2002 and an error occurs at the end of error page
comes that:

Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET
Version:1.1.4322.573

I have both frameworks installed. I have only VS2002.
Can you explain this. Runs my code even then under 1.1?
 
Its all to do with how your configuration file is set-up... this is a massive subject and gets a little hazy in places.

But... Version 1.0 will run in 1.1.. Version 1.1 may run on Version 1.0 but you have to put a great deal of though into how you have programmed your application.

VS2002 will compile to 1.1 Visual Studio and .NET Framework are essentially two separate entities.
 
Back
Top