I’ve been searching how to add webforms to MVC project but there lots of sites explaining only how to add MVC to an existing webforms project.
Is there a way to do that ? Maybe need to add some code at Web.Config ?
The .aspx.cs can’t find any control on the .aspx webpage, that’s the trouble !
Thanks!
You can add a WebForm to your MVC project and have it work. You can also add WebForm controls to an MVC view as long as you have a
<form runat="server">around it.