I'm in a situation where I'm new to MVC and the other programmer on my team is not so sometimes my learning curve is slowing deliverables down a little, so I'm trying to figure out what my options are for mixing in MVC views (or partial views) with WebForms as a short term solution to make functionality available in beta release and give me a chance to re-write in MVC for production.
I read this article and it explains how to reference assemblies of both frameworks but it doesn't seem to explain how to mix them in a single page.
For instance, can I take a user control (.ascx) and a view (.cshtml) and easily render them both into a master page (.master.aspx)?
It's as if I'd like a server control that executed the view on the server side and writes the contents to the Response stream. I guess the other option is to javascript ajax the view into the asp.net page but I'm wondering if that can be avoided.