This question is locked. New answers and comments are not allowed.
This is a bit dificult to explain and involves both the panel bar and tab control. I have an action link in a panel bar control that loads a view into the main content placeholder of a master page. The view has a tab control on it. One tab is to load a partial view into the tab content area, but whenever I run the application I get an InvalidOperationException that says "You cannot call render more than once". The error appears here
The code that causes the error is:
Can you explain this or help me fix it?
Thanks,
Jim
| <% |
| Html.Telerik().StyleSheetRegistrar() |
| .DefaultGroup(group => group.Add("telerik.common.css") |
| .Add("telerik.black.css")) |
| .Render() |
| ; |
| %> |
| <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server"> |
| <% Html.RenderPartial("BlogEntries"); %> |
| </asp:Content> |
Thanks,
Jim