Govt. Exams
Entrance Exams
Entity Framework is Microsoft's ORM that allows developers to work with databases using .NET objects instead of raw SQL.
ViewBag (dynamic) and ViewData (dictionary) are common ways to pass data from Controller to View in ASP.NET MVC.
[ValidateAntiForgeryToken] verifies that form submissions come from your application, preventing CSRF attacks.
Dependency Injection is configured in the ConfigureServices method of Startup.cs (or Program.cs in newer versions).
Middleware components handle cross-cutting concerns like authentication, logging, and exception handling in the request pipeline.
ViewState, Session State, Application State, and Cookies are valid state management techniques. Block State is not a standard ASP.NET technique.
ASP.NET Core is cross-platform (Windows, Linux, macOS) and open-source, while ASP.NET Framework is Windows-only.
[HttpGet], [HttpPost], [HttpPut], [HttpDelete] attributes define HTTP methods for controller actions in ASP.NET Core.
Global.asax handles application-level events like Application_Start, Application_End, and Session_Start.