Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Key Advantages of ASP.net CORE over Asp.net [closed]

What are the Key Advantages of ASP.net CORE over ASP.net, and When we can start using this new Framework?

I have just read some article about ASP.net CORE but could not found sufficient Answer.

Can anybody help me into this for understanding about ASP.net CORE.

Thanks

like image 713
Sunil Kumar Avatar asked Aug 04 '16 13:08

Sunil Kumar


1 Answers

From my point of view the key advantages are:

  1. ASP.NET Core is cross platform, so you can run it on Windows, Linux and Mac.
  2. It can handle a lot more requests.
  3. You don't need to install the .NET Framework to run it. Instead, you ship all the required dlls with your application.
  4. You can use Visual Studio Code to develop your application, which is free and lightweight in comparison to Visual Studio. And you can use it on different platforms as well.

Of course there are more differences, the Introduction to ASP.NET Core is a good place to get an overview.

like image 95
fknx Avatar answered Nov 04 '22 01:11

fknx