This question is locked. New answers and comments are not allowed.
Hi, I started to build a splitter based master page which works great when it passes a string into the Pane.Content builder method. But I cant see how to implement the following in order to render a ContentPlaceHolder within the pane.
So my question is really just about general VB.NET lambda usage, how to I go about converting the following C# code to VB.NET...
I have tried various things such as...
But now I am a bit stuck.
Any help would be appreciated.
Thanks,
So my question is really just about general VB.NET lambda usage, how to I go about converting the following C# code to VB.NET...
panes.Add() .Content(() => {%> <asp:ContentPlaceHolder ID="MainContent" runat="server" /> <%})I have tried various things such as...
panes.Add() .Content(Function (o) %> <asp:ContentPlaceHolder ID="MainContent" runat="server" /> <%)But now I am a bit stuck.
Any help would be appreciated.
Thanks,