artvolk
artvolk

Reputation: 9518

run asp.net 3.5 sites on asp.net 4.0 without changing code\web.config

Is it possible?

Upvotes: 2

Views: 616

Answers (3)

n8wrl
n8wrl

Reputation: 19765

There are subtle breaking-changes, many of which are for he better IMHO.

You'll need to set up seperate application pools targetting the appropriate framework and placing your 3.5/4.0 sites in the right pool.

Upvotes: 1

Madhur Ahuja
Madhur Ahuja

Reputation: 22701

Yes, if you have .NET 3.5 installed. Otherwise you will have to upgrade since .NET 4.0 has its own CLR.

See ASP.NET Side-by-Side Execution Overview : http://msdn.microsoft.com/en-us/library/a99txfy5.aspx

Upvotes: 2

Karthik Ratnam
Karthik Ratnam

Reputation: 3130

Yes. Both options are available in VS 2010. Just take care of functionality like ajax. It may stop you running old apps in new C #.

Upvotes: -1

Related Questions