About 11,100,000 results
Open links in new tab
  1. Get started with ASP.NET Core MVC | Microsoft Learn

    This tutorial teaches ASP.NET Core MVC web development with controllers and views. If you're new to ASP.NET Core web development, consider the Razor Pages version of this tutorial, which provides …

  2. CRUD using Web API in ASPNet Core - ASPSnippets

    Aug 20, 2025 · In this article I will explain with an example, how to perform CRUD operation i.e. Create, Read, Update and Delete using Web API in ASP.Net Core MVC.

  3. ASP.NET Core web API documentation with Swagger / OpenAPI

    Feb 23, 2026 · The following instructions apply to projects using Swashbuckle or NSwag with ASP.NET Core 8.0 and earlier. Swagger (OpenAPI) is a language-agnostic specification for describing REST …

  4. Integration tests in ASP.NET Core | Microsoft Learn

    Mar 10, 2026 · By Jos van der Til, Martin Costello, and Javier Calvarro Nelson. Integration tests ensure that an app's components function correctly at a level that includes the app's supporting …

  5. Model Binding in ASP.NET Core | Microsoft Learn

    Used with Razor Pages and MVC apps using controllers and views to prevent over-posting. Not used with a web API unless consumed from form data, query strings, and route data.

  6. Prevent Cross-Site Request Forgery (XSRF/CSRF) attacks in ASP.NET Core

    Jan 22, 2026 · ASP.NET Core encodes all server side output from variables by default, reducing the risk of XSS. If you override this behavior by using Html.Raw or custom code with untrusted input then …

  7. Learn ASP.NET Core using Step-by-Step Tutorials

    Learn ASP.NET Core step-by-step. Understand the basics of ASP.NET Core web framework with practical and easy to understand examples.

  8. Learn ASP.NET Web API using Step-by-Step Tutorials

    ASP.NET Web API is a framework for building HTTP services that can be accessed from any client including browsers and mobile devices. It is an ideal platform for building RESTful applications on the …

  9. asp-net-core-web-api · GitHub Topics · GitHub

    Sep 21, 2025 · Asp.Net Example web application showing the capabilities of ASP.NET Core 2 MVC, EF (Entity Framework), Web API, Bootstrap, jQuery, datatables, adminlte template and many more.

  10. Tutorial: Create a Minimal API with ASP.NET Core

    Feb 12, 2026 · Another approach to creating APIs in ASP.NET Core is to use controllers. For help with choosing between Minimal APIs and controller-based APIs, see APIs overview. For a tutorial on …