I’m going to migrate from asp to asp.net over the next few months. Is it worth building .NET interop components and calling them through COM wrappers in ASP to move things along? If so – what types of components would you make? Data access? It’s largely a CRUD and reporting application.
Share
I wouldn’t go down the COM path. Considering both apps are web based and the type of operations or transaction are fairly standard, I suggest you look at web services rather than com object and building throwing away wrappers. These web services can immediately be consumed as building block in your new ASP.NET application project too.