I'm working on ASP.NET project that is written using WebForms. We are in a process of switching to MVC so we writing all new pages in MVC. There are some big parts of application that we don't want to rewrite just yet, like authentication which is located in our BasePage. BasePage is inherited from every WebForm page.
Question: Can an MVC View inherit from this common BasePage that is also used by WebForms? If Views can, would the BasePage run through it's normal page life cycle?