views:

62

answers:

3

I have an existing ASP.NET website with some custom routing, within a Solution that also contains Business Logic projects.

I want to create a new project within the Solution, which is an ASP.NET MVC website.

This website will also call the Business logic, and the ultimate aim is to port most of the code from ASP.NET to ASP.NET MVC.

But I want them to both work side-by-side for now, to ensure minimal down-time, as it's a high-traffic website.

Is it possible to accomplish this somehow using either ASP.NET routing or some kind of IIS setting?

+4  A: 

Yep, you just need to add some routing to your current application. Try http://www.packtpub.com/article/mixing-asp.net-webforms-and-asp.net-mvc

stimms
A: 

Please have a look at this post by Scott HanselMan. It provides detailed discussion about this along with a nice walk through.

Mahin
A: 

I just wrote a blog post on this. It is possible. You might find it easier to simply relocate your web forms from your existing web forms project to your new MVC project. You may not have to change any code.

Matt Wrock