Web Forms for MVC 5

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 supplement an application with Web Forms using MVC. Is it possible to do this kind of integration? Or is it more feasible to redo the application in MVC?

Remembering that I need to use Web forms authentication, if I integrate both solutions.

    
asked by anonymous 15.01.2015 / 19:49

1 answer

1

Is it possible to do this type of integration? Or is it more feasible to redo the application in MVC?

No, because the request handling architecture is completely different.

Rewriting the application can be very costly, but yes, it is feasible. I was contracted for six months by a company to rewrite a Web Forms application without a formal data layer in ASP.NET MVC 5 + Entity Framework.

Remembering that I need to use Web forms authentication, if I integrate both solutions.

Legacy authentication can be used freely in MVC. I gave some answers teaching how to do various types of authentication , by the way.

    
15.01.2015 / 19:54