Assemblies Need To Run With Different Framework Versions

  • Thread starter Thread starter ieg999
  • Start date Start date
I

ieg999

I have an ASP.NET 2.0 application that uses mulitple assemblies. I
need certain assemblies to use .NET 1.1. These are library (DLL)
assemblies used in my application. These same DLLs are also used in a
WinForm app that will still be using 1.1 so they can't be updated to
the newer version at this point. How can I set my application to
require that 1.1 is used for these DLL assemblies? In reasearching
this, it appears that ASP.NET wants to only use one version of the .NET
Framework. The ASP.NET assembly(s) will use 2.0 but the business
object / data access assemblies need to continue to use 1.1. Thank you
for your help!
 
a .net application can only use one version of the .net runtime. you shoudl
be able to 2.0 to use the 1.1 assemblies under the 2.0 vm.

you other option is to create a sendond web site (webservice) running under
1.1 to hot the components.

-- bruce (sqlwork.com)
 
Hu Bruce

What is "vm", you have mentioned the word '2.0 vm", but did not
understand what it meant. Sorry for my ignorance

Thanks
PP
 
Back
Top