New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Sitemap Binding
Updated on Oct 24, 2025
The TabStrip enables you to create its items by binding to an ASP.NET sitemap, which automatically generates the hierarchical structure based on the XML sitemap configuration.
To bind the TabStrip to a sitemap, follow the next steps:
- 
Create a simple sitemap with the
sample.sitemapfile name at the root of the project.xml<?xml version="1.0" encoding="utf-8" ?> <siteMap> <siteMapNode title="Home" controller="Home" action="Overview"> <siteMapNode controller="grid" action="index" title="Grid" /> <siteMapNode controller="tabstrip" action="index" title="TabStrip" /> </siteMapNode> </siteMap> - 
Load the sitemap using the
SiteMapManager.C#public ActionResult Index() { if (!SiteMapManager.SiteMaps.ContainsKey("sample")) { SiteMapManager.SiteMaps.Register<xmlsitemap>("sample", sitmap => sitmap.LoadFrom("~/sample.sitemap")); } return View(); } - 
Define the TabStrip and bind it to the sitemap.
Razor@(Html.Kendo().TabStrip() .Name("tabstrip") // The name of the TabStrip is mandatory. It specifies the "id" attribute of the TabStrip HTML element. .BindTo("sample") // Bind to the sitemap with the name "sample". )