7 ms·
Is MVC the default ASP.NET workflow now? Is it the only workflow? Are Web Forms still supported?
by sdevlin 11y ago
Is MVC the default ASP.NET workflow now? Is it the only workflow? Are Web Forms still supported?
- runfaster2000 11y agoMVC is the default for ASP.NET 5, for both apps and services. It runs on both .NET Core and .NET Framework. Same with SignalR. WebForms remains supported and new features go into it each release. It is supported on the .NET Framework. Disclosure: .NET Core team member
- sdevlin 11y agoThanks!