We currently have a classic ASP web app using a set of COM objects that encompass the business logic and database access.
We are in the planning phase of our next rev an are looking at ASP.Net MVC 4 as the framework.
Can ASP.Net MVC use an existing COM object model through interop as the Model? Or is it better to use WebForms.
We currently have a classic ASP web app using a set of COM objects
Share
ASP.NET MVC is a dev framework which does not worry what is your Data Access method is . It can be an XML file or a REST API call result or your COM objects. What you need to do is to map your these objects to your
viewmodelapproproately. Create ViewModels as necessary to pass data to and from the Views.