Scott Guthrie mentioned in one of his MVC blog posts that it is possible to combine MVC and webforms in the same application. I've tried that, but I get lots of errors in the webforms.
What I'm trying to do: I have a asp.net cms, with an edit part where I need to continue to use webforms. I want to use MVC for the website itself. I've copied all relevant files from the webforms application into an empty MVC application(it worked before I started copying files), and then I've added a few lines in the web.config file on the root of the application.
When I try to build the solution, I get lots of errors like this: "The name 'txtRank' does not exist in the current context", in the codebehind files of the webform aspx files. txtRank is a regular textbox: <asp:TextBox ID="txtRank" runat="server"></asp:TextBox>.
What am I missing?