Xinus
Xinus

Reputation: 30513

Can we use ASP.NET MVC3 along with classic ASP.NET?

I have ASP.NET application in which some pages are designed using MVC3 architecture and some with classic ASP.NET (with view state ..etc) I want to merge these two projects in One. Or Is there any predefined Controller in MVC3 that can deal with this specific requirement?

Can we make some URL patterns to be dealt with Classic ASP.NET and some with MVC3 ?

Upvotes: 1

Views: 294

Answers (1)

Kevin LaBranche
Kevin LaBranche

Reputation: 21078

Why YES you can!

http://www.hanselman.com/blog/IntegratingASPNETMVC3IntoExistingUpgradedASPNET4WebFormsApplications.aspx

He also has another post using a NuGet package to integrate the two...

Upvotes: 1

Related Questions