ASP.NET ChildActionOnly
last modified April 3, 2025
In this article, we explore the ChildActionOnly attribute in ASP.NET 8. This attribute is used to restrict action methods to be called only as child actions.
Child actions are special controller actions that are invoked from within a view. They enable reusable UI components and partial page updates in ASP.NET MVC.
Basic Definition
The ChildActionOnly attribute in ASP.NET MVC marks a controller action method to be callable only as a child action. It prevents direct access via URL.
When applied to an action method, ChildActionOnly ensures the method can only be invoked using Html.Action or Html.RenderAction helper methods in views.
Child actions are useful for creating reusable components like menus, widgets, or partial views that need server-side processing. They help organize complex views into smaller, manageable pieces.
ASP.NET ChildActionOnly Example
The following example demonstrates using ChildActionOnly to create a navigation menu that's rendered as a partial view.
var builder = WebApplication.CreateBuilder(args); builder.Services.AddControllersWithViews(); var app = builder.Build(); app.UseStaticFiles(); app.MapControllerRoute( name: "default", pattern: "{controller=Home}/{action=Index}/{id?}"); app.Run();
This sets up a basic ASP.NET MVC application with controller support and routing.
The AddControllersWithViews
method enables MVC features.
using Microsoft.AspNetCore.Mvc; public class HomeController : Controller { public IActionResult Index() { return View(); } [ChildActionOnly] public IActionResult NavigationMenu() { var menuItems = new List<MenuItem> { new MenuItem("Home", "Index", "Home"), new MenuItem("Products", "Index", "Products"), new MenuItem("About", "About", "Home"), new MenuItem("Contact", "Contact", "Home") }; return PartialView("_NavigationMenu", menuItems); } } public record MenuItem(string Text, string Action, string Controller);
The HomeController contains two actions. The Index action serves the main page, while NavigationMenu is marked with ChildActionOnly and returns a partial view.
@model List<MenuItem> <nav> <ul> @foreach (var item in Model) { <li> <a asp-controller="@item.Controller" asp-action="@item.Action"> @item.Text </a> </li> } </ul> </nav>
This partial view renders the navigation menu. It receives the menu items from the child action and generates the HTML for the navigation.
@{ ViewData["Title"] = "Home Page"; } <div class="container"> <h1>Welcome to our website</h1> @await Html.PartialAsync("_NavigationMenu") <div class="main-content"> <p>This is the main content of the page.</p> </div> </div>
The main view includes the navigation menu by rendering the partial view. The child action is automatically invoked when the partial view is rendered.
This example shows how ChildActionOnly helps create reusable components. The navigation menu can be included in any view while keeping the logic separate.
Source
Microsoft ASP.NET Partial Views Documentation
In this article, we have explored the ChildActionOnly attribute in ASP.NET 8. This feature enables creating modular, reusable UI components in MVC apps.
Author
List all ASP.NET tutorials.