This question is locked. New answers and comments are not allowed.
I am wondering if any one can help me to translate demo at http://demos.telerik.com/aspnet-mvc/tabstrip from ASP.net WebForm engine to Razor syntax.
example is embedding HTML inside <% and %> markers. How we can do this using Razor engine.
Thanks,
-Saleem
<% Html.Telerik().TabStrip() .Name("TabStrip") .Items(tabstrip => { tabstrip.Add() .Text("ASP.NET MVC") .ImageUrl("~/Content/Common/Icons/Suites/mvc.png") .Content(() => {%> <ul> <li>Pure ASP.NET MVC components</li> <li>Completely Open Source</li> <li>Exceptional Performance</li> <li>Based on jQuery</li> <li>Search Engine Optimized</li> <li>Cross-browser support</li> </ul> <%}); }) .SelectedIndex(0) .Render(); %>example is embedding HTML inside <% and %> markers. How we can do this using Razor engine.
Thanks,
-Saleem