2
I joined a company, where we have an application running in Web Forms, and we are developing new applications with Asp.Net MVC. However, I was asked to complement an application with Web Forms, using MVC. Is there a possibility to do this type of integration? Or is it more feasible to redo the application in MVC?
Remembering that I need to use Forms Web authentication if I integrate both solutions.
Thank you for the answer. I had already imagined this, I just wanted a second opinion, to have basis in explaining to my superiors.
– Randrade
You can argue further about the route engine, the ability of an MVC application to respond as JSON (partially REST or entirely, using Web API), and so on. There are so many differences that it is not worth spending time investing in Web Forms.
– Leonel Sanches da Silva
Just one more question, you commented on "legacy authentication". use the same authentication and such. But I can’t take the data of a logged-in user in a Web Forms application and "use" the same Session to log into the MVC system, or with you? P.S: This will be the essential point that my superiors will address.
– Randrade
@Renilsonandrade If Session is based on Cookies, you can. Or based on a storage engine that is shared between the two applications.
– Leonel Sanches da Silva
Thanks, I’ll see how it works, to explain right.
– Randrade