.NET Core and Classic ASP in the same solution?

My company is researching using the new .NET Core for a small internal project, however there are a couple of very complex (and old) classic ASP pages that we don't want to rewrite at the moment.

Is it possible within .NET Core to run some classic ASP pages? We have failed so far, but maybe there is some Program.cs or appsettings.json configuration that we are missing.

+3


source to share


1 answer


Side by side? Yes. Same solution? Not. there are significant differences between ASP.NET and ASP.NET Core, and the difference is even more extreme when comparing classic ASP.



ASP.NET Core is designed to run outside of IIS, while .NET Core is designed to run outside of Windows. Classic ASP is architecturally incompatible with both of these things.

+6


source







All Articles