Tutorials ASP.NET Core Tutorial
Controllers and Actions — Complete Guide
Controllers and Actions — Complete Guide: free step-by-step lesson with examples, common mistakes, and interview tips — part of ASP.NET Core Tutorial on Toolliyo Academy.
On this page
ASP.NET Core Tutorial (ShopNest) · Lesson 11 of 100
Controllers and Actions
Beginner → Intermediate → Advanced → Professional
Beginner · 1 — Foundations · ~12 min read · Module 2: MVC Fundamentals
Introduction
This lesson is part of the beginner section. We explain Controllers and Actions slowly, with examples you can copy and run. If something is unclear, read it twice — that is how everyone learns. A controller is a class that handles HTTP requests. Each public method is an action — like Index() for the home page or Details(int id) for one product. Every page and API endpoint maps to a controller action. This is the first place request handling logic lives.
Controllers and Actions appears in almost every web app you will build. Once it clicks, EF Core and Web API become much easier.
When will you use this?
You use this in every web page and form you build from your first app to production.
- Product pages, login forms, and admin dashboards all use controllers, views, and models.
- When a user submits an order form, model binding maps form fields to a C# class.
Real-world: Toolliyo-style learning platform
The EdTech / LMS team building Toolliyo-style learning platform uses Controllers and Actions to handle GET /products and return the product list page or JSON. students and instructors never see the C# code — they just get a fast, reliable course API and lesson progress tracking.
Production-style code
public class ProductsController : Controller
{
public IActionResult Index()
{
var products = new[] {
new { Id = 1, Name = "Wireless Mouse", Price = 899 },
new { Id = 2, Name = "USB-C Hub", Price = 1499 }
};
return View(products);
}
}
What happens in production: In Toolliyo-style learning platform, getting Controllers and Actions right means students and instructors trust the course API and lesson progress tracking every day.
Lesson example (start here)
Copy this smaller example first. Once it works, compare it with the real-world code above.
public class ProductsController : Controller
{
public IActionResult Index()
{
var products = new[] {
new { Id = 1, Name = "Keyboard", Price = 2499m }
};
return View(products);
}
public IActionResult Details(int id)
{
return View();
}
}
Line-by-line walkthrough
| Code | What it means |
|---|---|
public class ProductsController : Controller | Controller class — handles HTTP requests and returns views or JSON. |
{ | Part of the Controllers and Actions example — read it together with the lines before and after. |
public IActionResult Index() | Return type — can be a view, redirect, JSON, or error response. |
{ | Part of the Controllers and Actions example — read it together with the lines before and after. |
var products = new[] { | Part of the Controllers and Actions example — read it together with the lines before and after. |
new { Id = 1, Name = "Keyboard", Price = 2499m } | Part of the Controllers and Actions example — read it together with the lines before and after. |
}; | Closes a block started by { above. |
return View(products); | Returns an HTML Razor view to the browser. |
} | Closes a block started by { above. |
public IActionResult Details(int id) | Return type — can be a view, redirect, JSON, or error response. |
{ | Part of the Controllers and Actions example — read it together with the lines before and after. |
return View(); | Returns an HTML Razor view to the browser. |
} | Closes a block started by { above. |
} | Closes a block started by { above. |
How it works (big picture)
- ProductsController handles /Products/...
- routes.
- Index returns a view.
- Details receives id from the URL.
- IActionResult can be a view, redirect, or JSON.
Do this on your computer
- Add ProductsController with Index action.
- Create Views/Products/Index.cshtml.
- Browse to /Products and see your page.
- Add Details(int id) and log the id.
- Read the real-world section and name which part of the app uses this topic.
- Run the example locally with dotnet run and confirm the same behavior.
- Change one value in the example (route, text, or connection string) and predict what will happen before you save.
Experiments — try changing this
- Change a string or route in the example and save — watch the browser or Swagger response update.
- Break the code on purpose (remove a semicolon), read the error message, then fix it.
Remember
Controller = request handler class. Action = public method on that class. Return IActionResult for views or JSON.
Common questions
How does MVC find my controller?
Convention: ProductsController maps to /Products route segment.
How long should I spend on Controllers and Actions?
Until you can explain it in your own words and run the example without looking at the answer. Beginners often need 30–60 minutes per new concept; setup lessons may take one afternoon.
What if I get stuck on Controllers and Actions?
Re-read the line-by-line walkthrough, check the terminal for red errors, and compare your code character-by-character with the example. Search the exact error text — someone else had it too.
Where is Controllers and Actions used in real jobs?
See the real-world section above — the same pattern appears in LMS, banking, e-commerce, and SaaS backends. Interviewers ask you to explain it using one concrete example.