will ASP v1.1 apps work on ASP 2.0

  • Thread starter Thread starter Patrick Olurotimi Ige
  • Start date Start date
P

Patrick Olurotimi Ige

After installing Visual Web Developer will old aspv1.1
applications run smoothly on aspv2.0?
 
They will run smoothly, but not on asp.net 2.0.
They will run, side-by-side with asp.net 2.0, under asp.net 1.1.




Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================
 
So then i need both asp.net 1.1 and asp.net 2.0 on the system and then
switch them when neccesary?
 
re:
So then i need both asp.net 1.1 and asp.net 2.0 on the system
Yes.

re:
switch them when neccesary?

Not exactly "switch them".

What you'd do is assign the proper ASP.NET version to each application, either via
the ASP.NET tab in the IIS manager, or using Denis Bauer's ASP.NET Version Switcher

http://www.denisbauer.com/NETTools/ASPNETVersionSwitcher.aspx

You also need to assign all 1.1 apps to a
different Application pool than all the 2.0 apps,
which must be in a separate application pool.



Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================
 
Thx Juan for the reply.
Regarding Application pooling i'm not using IIS6 but IIS5 and i don't
think it has that option.
Is there a way i can do the same in IIS v5?
 
You can run all your 1.1 apps Low or Medium-pooled,
and your 2.0 apps Isolated.




Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================
 
Patrick said:
After installing Visual Web Developer will old aspv1.1
applications run smoothly on aspv2.0?

Yes. M$ posted a list of incompatibile things several months ago, and
there is nothing related to ASP.NET directly.
 
Back
Top