The original view engine being the .aspx files with the <% %> riddled all over. I kind of want to move away from that, but I want the old code files to still work fine as I migrate.

Are there any good methods for this and/or snags I should be aware of?

link|improve this question

79% accept rate
@GeorgeStocker what about the upgrade? – Ryan Mar 16 '11 at 19:52
feedback

3 Answers

up vote 1 down vote accepted

It is not possible to upgrade from v1 to v3 directly using a tool. You will have to first upgrade using this tool and then use this version to get it to MVC3.

You can also use both view engines together without a problem as seen here.

link|improve this answer
feedback

The answer to your question is here.

link|improve this answer
what about the upgrade? – Ryan Mar 16 '11 at 19:51
@Ryan There's nothing special about the upgrade; there are a few deprecated items, but you should be aware of that. This stack Overflow question will tell you how: stackoverflow.com/questions/4888810/… – George Stocker Mar 16 '11 at 20:35
feedback

It is possible to use a mixture of both engines, and you can include ascx partial views into Razor views, which is helpful during the transition.

aspx and cshtml (Razor) views cannot share a master page, so ultimately you have to have two masters (one for the old, one for the new). However, you can generally refactor most of your master page into a handful of ascx files, which you can then use with both the 'old' and the 'new' master pages.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.