> For the complete documentation index, see [llms.txt](https://docs.dot-net.uz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dot-net.uz/c-.net/web-development/asp.net-core-mvc/controller.md).

# Controller

**Controller** - Asp.Net Coredagi **Microsoft.AspNetCore.Mvc.Controller** sinfdan voris olgan yangi sinf hisoblanadi. Shuningdek foydalanuvchidan kelgan **request** (so'rov) ni qayta ishlaydi. Kerak bo'lsa **model** ni shaklantiradi va **view** (ko'rinish) ni chaqiradi.

**Controller** lar **Controllers** papkasida joylashadi.Agar siz yangi controller qo'shmoqchi bo'lsangi aynan shu papkaga qo'shishingiz kerak bo'ladi

Agar siz ushbu **<https://localhost:5001/Home/Privacy>** urlga tashrif buyursangiz: **Controllers** papkasida joylashgan **HomeController** nomli sinfning **Privacy** metodi ishga tushadi va bu metod sizga ota sinfdan voris olgan View() methodi orqali view(ko'rinishni) qaytaradi.

Namunaviy Controllerning ko'rinishi quydagicha:

```
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using dotnetuz.Models;

namespace dotnetuz.Controllers
{
    public class HomeController : Controller
    {
        private readonly ILogger<HomeController> _logger;

        public HomeController(ILogger<HomeController> logger)
        {
            _logger = logger;
        }

        public IActionResult Index()
        {
            return View();
        }

        public IActionResult Privacy()
        {
            return View();
        }
    }
}
```

ASP.NET Core da Barcha controller sinflar Controller suffixi bilan tugashi lozim. Yuqoridagi Contoller aynan shu tufayli HomeController deb nomlangan. Sinf ichidagi public modifikatoriga ega bo'lgan metodlar Action deb nomlanadi.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.dot-net.uz/c-.net/web-development/asp.net-core-mvc/controller.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
