Which is best web framework of the C#

Shahid ullah 0 Reputation points
2024-05-07T18:16:57.1633333+00:00

I want to learning an web framework by C#. I have knowledge HTML, CSS and CSS other framework. Now which is better for me from ASP.NETCORE? The serial should be

HTML

CSS

JS

----/---

----/---

----/---

ASP.NET Core Training
ASP.NET Core Training
ASP.NET Core: A set of technologies in the .NET Framework for building web applications and XML web services.Training: Instruction to develop new skills.
16 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Michael Taylor 50,506 Reputation points
    2024-05-07T18:46:24.59+00:00

    If you're planning to use C# on the server side then ASP.NET Core is your only real option here. Whether you use MVC, Razor Pages or Blazor is dependent upon the type of apps you intend to build. Read the docs for each platform and determine which one best aligns with your needs. You may need different platforms for different apps.

    On the client side you can use MVC views, Blazor or any front end library you want like Angular, React or Vue. Determine which front end library you want to use and there is likely a VS template for it. Each library has its own strengths and weaknesses.

    0 comments No comments