Posted inASP.NET CORE MVC ViewComponentResult in Asp.net Core Posted by By Abdul Khursheed February 12, 2025 While view components are primarily invoked from within views, the ViewComponentResult class allows you to directly return…
Posted inASP.NET CORE MVC View Components with Parameters in Asp.net Core MVC Posted by By Abdul Khursheed February 12, 2025 While view components can function without parameters, passing parameters to them significantly enhances their flexibility…
Posted inASP.NET CORE MVC Strongly Typed View Components in Asp.net Core MVC Posted by By Abdul Khursheed February 12, 2025 Just like strongly typed views, strongly typed view components are associated with a specific model…
Posted inASP.NET CORE MVC View Components in Asp.net Core MVC Posted by By Abdul Khursheed February 12, 2025 View Components are self-contained, reusable UI building blocks in ASP.NET Core MVC. They are designed…
Posted inASP.NET CORE MVC Partial Views in Asp.net Core MVC Posted by By Abdul Khursheed February 12, 2025 Partial view is a reusable chunk of Razor markup (.cshtml) that can be embedded within…
Posted inASP.NET CORE MVC PartialViewResult in Asp.net Core MVC Posted by By Abdul Khursheed February 12, 2025 PartialViewResult is a specific type of ActionResult designed for returning partial views from your controller actions. Partial views,…
Posted inASP.NET CORE MVC Client Side Validations in Asp.net Core MVC Posted by By Abdul Khursheed February 12, 2025 Data annotations on model properties[Required]publicDataTypePropertyName { get; set; } "data-*" attributes in html tags [auto-generated with…
Posted inASP.NET CORE MVC Asp.net Core Tag Helpers for HTML Tags Posted by By Abdul Khursheed February 12, 2025 Tag helpers are the classes that can be invoked as an html tag or html…
Posted inASP.NET CORE MVC Tag Helpers in Asp.net Core MVC Posted by By Abdul Khursheed February 12, 2025 Tag helpers are a feature in ASP.NET Core MVC that allow you to extend HTML…
Posted inASP.NET CORE MVC HTTP Status Codes Posted by By Abdul Khursheed February 11, 2025 Overview: Status codes are issued by the server in response to the client's request to…