This question is locked. New answers and comments are not allowed.
Can someone explain to me why the following code gives me a tab strip with 3 different tabs ("A", "B", and "C"), but yet the content is all the same (in this case, "C")? I'm trying to dynamically set the content of the tabs on the server side but I'm not having any luck. Thanks!
<% Html.Telerik().TabStrip() .Name("TabStrip1") .Items(item => { foreach (string str in new string[] {"A", "B", "C"}) { item.Add().Text(str) .Content(() => {%> <%= str %> <%}); } } ).Render(); %>