filmov
tv
Controllers in ASP.NET Core MVC- Arabic
Показать описание
Controllers
1- Class inherits from Controller (Microsoft.AspNetCore.MVC)
2- exists in the Controllers folder
3- to Create new Controllers
Right click on Controllers folder
Add
Controller
Empty Controller MVC
4- Controller name should end with Controller word
(Ex: HomeController , EmpController)
5- contains a group of action method ( Client can access it from URL )
should be public
should be none static
should not overloaded
6- To Call Action Method
localhost:0000/Controller/action ( action with no parameters)
localhost:0000/Controller/action/id ( action id parameter)
localhost:0000/Controller/action?v1=d1&v2=d2&v3=d3.... (action with more than one parameter)
1- Class inherits from Controller (Microsoft.AspNetCore.MVC)
2- exists in the Controllers folder
3- to Create new Controllers
Right click on Controllers folder
Add
Controller
Empty Controller MVC
4- Controller name should end with Controller word
(Ex: HomeController , EmpController)
5- contains a group of action method ( Client can access it from URL )
should be public
should be none static
should not overloaded
6- To Call Action Method
localhost:0000/Controller/action ( action with no parameters)
localhost:0000/Controller/action/id ( action id parameter)
localhost:0000/Controller/action?v1=d1&v2=d2&v3=d3.... (action with more than one parameter)
ASP.NET Core MVC 2022 - 4. Controllers
Controller in ASP NET Core MVC
#35 Controllers in ASP NET | Controllers & IActionResult | ASP.NET Core MVC Course
Controller in Asp.net core MVC | Asp.net core MVC 6.0 | Asp.net core MVC tutorial
ASP.NET Core MVC - Intro to Controllers and Views
Controllers in ASP.NET Core MVC
Should You Use Controllers or Minimal APIs in .NET?
#02 Work with Controller in ASP.NET Core MVC - Part 1 | ASP.NET CORE MVC
.NET CORE tutorials || Demo - 1 || by Mr. Mohan Reddy On 20-01-2025 @8PM IST
Adding Controller and View to ASP NET Core MVC
18. Adding your first controller [ActorsController] | ASP.NET MVC
How to Create a New Controller in ASP.NET Core MVC - Character Counter Site
Choosing between MVC Controllers, Minimal API, or FastEndpoints for C# APIs.
#36 Multiple action methods | Controllers & IActionResult | ASP.NET Core MVC Course
Intro to ASP.NET Core MVC: Controllers
12. (ASP.NET Core 1.0 & MVC) Controllers And The Controller Class
12. FIRST CONTROLLER - Asp.Net CORE MVC
How To Create DRY ASP NET Core Controllers
Routing in ASP.NET Core MVC (Beginners Guide)
How to Create New Controller in MVC
(#13) Controller in Asp.Net Core MVC | Asp.Net Core tutorial
Create Your First ASP.NET Core MVC Application using Visual Studio | Models Views and Controllers
ViewModels in ASP.NET MVC applications - This is how it works
(#26) Controller in ASP NET Core MVC
Комментарии