Ive noticed that MVC 2 uses masterpages and ascx pages. I’m used to using Razor pages but have to work on an older project. So I’m wondering if it is okay to use asp.net server controls on these aspx markup pages?
I know its advised not to plug into the page lifecycle but what about user controls?
If you want to use user controls, stick with Web Forms. User controls are not used with MVC. The MVC view engine does not have a page lifecycle like Web Forms.