This example shows how to configure templated pre-set content for Telerik TabStrip for ASP.NET MVC. The tabstrip allows you to render regular HTML mark-up code as a content of the corresponding item, instead of child items .
To render templated content use Content method which accepts Action. Html should be added between %> and <% as in the example.
<%
Html.Telerik().TabStrip()
.Name("TabStrip")
.Items(parent =>
{
parent.Add()
.Text("Products > Books")
.Content(() =>
{ %>
<!-- Content -->
<% });
...
})
.Render();
%>