|
Subject:
|
classic asp with asp.net on same iis
|
|
Posted By:
|
bostonrose
|
Post Date:
|
1/8/2007 3:43:01 PM
|
Are there any tricks to running classic asp on the same IIS as asp.net 2.0 besides the non-sharing of session objects?
|
|
Reply By:
|
Imar
|
Reply Date:
|
1/8/2007 3:47:42 PM
|
Tricks? Or problems?
We have many servers running both classic ASP, .NET 1 and .NET 2 at the same time. The only problem we ever ran into is when we created a .NET 2 site and accidentally reused an Application Pool that also contained a .NET 1.x site. When the 2.0 site started, all the others failed... :-( Moving the .NET 2 site to a 2.0 specific app pool solved the problem.
Other than, we never had any problems...
Imar --------------------------------------- Imar Spaanjaars http://Imar.Spaanjaars.Com Everyone is unique, except for me. Author of ASP.NET 2.0 Instant Results and Beginning Dreamweaver MX / MX 2004 Want to be my colleague? Then check out this post.
|
|
Reply By:
|
bostonrose
|
Reply Date:
|
1/9/2007 3:33:02 PM
|
Thanks for the input, I guess I wasn't specific enough. I was talking about running both types of programs inside one web site, not separate web sites inside one IIS version. Any experience there and any problems? Thanks, Bostonrose
|
|
Reply By:
|
qazi_nomi
|
Reply Date:
|
1/9/2007 3:46:20 PM
|
Dear bostonrose you can use both ASP and ASP.net on same iis as both can uses same version of iss. We have a web application running on IIS with having few pages of ASP and few are ASP.net
(*_*)
Numan -------------------------------------------------- It is not important what you get But important is how you got it
|
|
Reply By:
|
planoie
|
Reply Date:
|
1/10/2007 10:21:23 AM
|
An important note:
Yes, you can run Classic ASP alongside of ASP.NET within the same IIS application (similar to php or perl or another web scripting technology; each type of page request is handled by a different engine). HOWEVER: You cannot run both ASP.NET 1.x and 2.0 in the same application. You tell IIS which version of ASP.NET to use for the application.
-Peter
|
|
Reply By:
|
qazi_nomi
|
Reply Date:
|
1/10/2007 11:20:52 AM
|
Yes Peter is very right we have to specify for each application that which version of frame work would be used by that application
(*_*)
Numan -------------------------------------------------- It is not important what you get But important is how you got it
|
|
Reply By:
|
Imar
|
Reply Date:
|
1/10/2007 11:38:51 AM
|
quote: we have to specify for each application that which version of frame work would be used by
But not only that; you need to make sure they run in separate processes / application pools.
Imar --------------------------------------- Imar Spaanjaars Everyone is unique, except for me.
|