
Explore ASP.NET's evolution from 2002 to the cross-platform, high-performance core. See how features like MVC, Web API, Ajax, and Linq drive modern web development.
Run the default ASP.NET Core project to view the diary app and explore how launchSettings.json configures profiles, IIS Express, and the localhost 7016 URL.
Explore the project file, its Microsoft.net SDK web variant, and key settings like target framework dotnet 9.0, nullable enable, and implicit usings for streamlined development in Visual Studio.
Explore connected services and dependencies in a multi-project solution, including Azure storage, SQL databases, key vault, and rest or soap services, with NuGet packages and Entity Framework Core.
Explore the www root folder as the static-file hub for css, javascript, libraries, images, and other assets, accessible via url, enabling caching and faster client-side loading.
Configure the request processing pipeline in Program.cs by combining middleware like exception handling, hsts, https redirection, static files, routing, and authorization, then run the app.
Explore routing by adding a new my page action in the home controller and its view, then set my page as the home page and navigate to home/my page.
Apply data annotations to model properties to define keys and required, ensuring non-null values with Entity Framework Core. Explore nullable and non-nullable strings and default DateTime values.
ASP.NET controllers process user input, route requests, and return views, JSON, or redirects, while using dependency injection, filters, and attribute routing for flexible URLs.
Discover why seeding data matters in ASP.NET Core 9, ensuring consistent environments and reliable testing across development, staging, and production, while providing a ready baseline for CRUD operations.
Learn how get retrieves data via the URL while post sends data in the body to create or update resources, with notes on idempotence, safety, and status codes.
Learn how crud operations create, read, update, and delete data using http methods post, get, put/patch, and delete, with practical examples and authentication, authorization, and validation security in mind.
Learn how RESTful endpoints enable client-server communication using HTTP methods and data formats like JSON or XML, with authentication, versioning, error handling, and documentation.
Implement the edit view and edit action in the diary entries controller, loading the selected diary entry by id from the database and populating the form with its data.
Implement the edit post request to update a diary entry in the database, save changes, and redirect, illustrating the edit workflow within ASP.NET Core CRUD.
Create the delete get action and its razor delete view by adapting the edit code, passing the id, and prepare the post delete action for the next video.
Explore the RESTful API foundation, including stateless client–server architecture, cacheable resources and representations, and the uniform interface, while comparing REST with SOAP, GraphQL, and RPC and outlining real-world use cases.
Build a RESTful ASP.NET Core web API by implementing crud (create, read, update, delete) in a diary entries controller using DbContext and Swagger testing.
Explore how ASP.NET Core Web API uses the controller base class, attribute routing, and model binding to build robust APIs with validation, error handling, and appropriate status codes.
Discover how Swagger simplifies designing, building, documenting, and testing restful APIs with interactive documentation and automatic client SDKs, and learn to integrate Swashbuckle in ASP.NET Core.
Build an api diary entries controller in ASP.NET Core 9, expose a http get endpoint to return all diary entries via the application db context, demonstrated with swagger.
Explore IActionResult in ASP.NET Core, returning various responses like ok, not found, and bad request; learn ActionResult, ActionResult<T>, and best practices for consistent, type-safe results.
Make diary data reads asynchronous with async and await to prevent blocking the main thread and boost API performance. Return action results that may deliver diary entries or error responses.
Implement a get diary entry by id endpoint in an ASP.NET Core 9 API, using action result, not found handling, and asynchronous find and await for efficient data retrieval.
Implement the http delete action to remove a diary entry by id, handle not found, save changes, and return a 204 no content response, tested via Swagger.
Build an ASP.NET Core 9 app that teaches identity system with registration, login, roles, and seeding users, using a repository pattern with Entity Framework for data access and job postings.
Register and configure your application db context with Entity Framework Core SQL Server, register AddDbContext in Program.cs, and read the connection string from appsettings.json using GetConnectionString('database').
Configure a default identity and scaffold an identity login page using entity framework stores, identity user and role, with development-friendly sign-in options and razor page mapping.
Seed user roles programmatically at startup using the role manager in asp.net core identity; create a scope in program.cs, resolve services, and use the role manager to create identity roles.
Seed the admin role only if it does not exist, using role exists async and create async to add an identity role in the ASP.NET core app.
Introduce a static constants class for admin, job seeker, and employer roles. Refactor seeding into a dedicated role seeder using the role manager and constants.
Seed roles with the role manager, then seed user accounts with a dedicated user seeder class using the user manager to create admin, job seeker, and employer identities in ASP.NET Core 9.
Seed a user with an admin role by checking for existing accounts by email, creating the user with email and username, and assigning the admin role.
Assigns a new user to a role based on the UI toggle during registration, using the user manager to create the account and assign the job seeker or employer role.
Unit tests for the job posting repository demonstrate async add and get by id methods, including a key not found exception, using an isolated Entity Framework context.
Develop and verify a GetAllAsync unit test by seeding two job postings, using add async and add range async with a repository to ensure the method returns exactly two postings.
Build a bootstrap-styled job posting form with model binding, posting to a create action via http post, then redirect to the index page.
Bind the job posting form fields title, description, company, location to the model with asp-for, while EF auto-assigns id and UTC posted date, and user id is calculated in controller.
Map the validated job posting view model to a new job posting, set title, description, company, location, user id, and post date, then save via the repository.
Master handling invalid forms in ASP.NET Core 9 by returning to the create page with input and showing validation messages via data annotations and the shared validation scripts partial.
Apply authorize and allow anonymous attributes in asp.net core 9 to control access, enforcing admin and employer roles for creating or deleting job postings.
Implement an http delete endpoint protected by admin and employer roles to remove job postings, and add a role based delete button in index view connected to jQuery ajax call.
Add a JavaScript function to delete a job posting, wire it to the button with the posting id via onclick, show a confirmation, and prepare a jQuery Ajax delete call.
Filter job postings by role so employers see only their own postings, while job seekers and admins see all. Use the current user id and a where clause to filter.
Explore the blazer apps chapter by building interactive client-side apps, covering lifecycles, built-in components, data binding, event handling, forms and validation, layouts, css isolation, and multilingual support with language switching.
Compare Blazer and Razor, explain Razor as a C# HTML templating approach, and show how Blazer renders single page applications with reusable Razor components.
Build your first blazer app by creating a reusable shopping list component, routing, and a grocery model. Bind inputs, add items, display the list, and calculate the total.
Explore one-way, two-way, and event binding in Blazor, connecting UI elements with application logic and showing how bind and on input events enable real-time updates.
Demonstrate forms and validations with the Blazar framework using a grocery item form, data annotations, and validation summary to handle valid and invalid submits.
The endpoint for the weather API has changed.
Register the http client in the startup program with a base url via dependency injection, then fetch data to return weather forecasts with date, Celsius, Fahrenheit, and summary.
learn to upload multiple files to a blazor server app using an input file component, an async upload method, and a file upload service with dependency injection.
Learn to add a progress bar to the upload page in the ASP.NET Core 9 course, showing real-time progress for multiple files and image previews before upload.
Explore JavaScript interoperability in Blazor, learning how to call JavaScript from .NET and vice versa, use invokeAsync and promise-based results to integrate JS libraries and browser APIs.
Welcome to the complete ASP.NET Core 9 (.NET 9) course, the only course you will need to develop modern web applications with C# most popular web development framework.
This course is designed for all the busy developers who have no time to work through a 40-hour+ course. We built this course to get you up and running with ASP.NET Core 9 in a fast, easy, but still deep-dive way.
You will learn the development of ASP.NET Core 9 with all of its aspects. Craft applications using the MVC Pattern and develop entire RESTful web APIs by implementing the repository design pattern.
In addition to the standard development topics, we have added important additional topics about identity, security, validation and much more.
This course is for Anyone with experience in C# and SQL who wants to take the next step and learn to build applications in ASP.NET Core with MVC as well as by using the Entity Framework Core.
If you want to finally understand what the fuzz is all about and want to see how to quickly create functional, clean, and efficient websites and get a great entry into ASP.NET Core development, then this is the right course for you.
In this ASP.NET core course you will learn these topics:
Developing complete web applications using the MVC Pattern (Model View Controller)
RESTful Web API Development
Authorization and Authentication (Roles and Accounts)
Entity Framework Core, SQL Development
Razor Pages
Data-Binding
Dependency Injection
Form Validation
Designing Web-Applications
Uploading Files and images
Advanced real-world techniques like implementing the repository design pattern
Blazor Web Development
This course is for anyone, who wants to learn ASP.NET core 9 and wants to become professionally good in C# web development. No experience is required whatsoever. It is designed that anyone who can handle a mouse and keyboard will succeed in finishing it.
Enroll now and dive deep into web development using C# and ASP.NET Core 9.
See you in the course!