Hi,
Below is my code trying to open google in the contenpane but it opens in new window instead.
what did I do wrong here?
<div id="ParentDivElement" style="height: 100%;"> |
<telerik:radsplitter id="MainSplitter" runat="server" height="100%" width="100%" |
orientation="Horizontal" skin="Outlook"> |
<telerik:RadPane ID="TopPane" runat="server" Height="100" MinHeight="85" MaxHeight="150" |
Scrolling="none"> |
<!-- Place the content of the pane here --> |
</telerik:RadPane> |
<telerik:RadSplitBar ID="RadsplitbarTop" runat="server" CollapseMode="Forward" /> |
<telerik:RadPane ID="MainPane" runat="server" Scrolling="none" MinWidth="500"> |
<telerik:RadSplitter ID="NestedSplitter" runat="server" Skin="Web20" LiveResize="true"> |
<telerik:RadPane ID="LeftPane" runat="server" Width="300" MinWidth="150" MaxWidth="400"> |
<!-- Place the content of the pane here --> |
<a href="http://google.com" target="<%= contentPane.ClientID%>"> |
Open google.com</a> |
</telerik:RadPane> |
<telerik:RadSplitBar ID="VerticalSplitBar" runat="server" CollapseMode="Forward" /> |
<telerik:RadPane ID="ContentPane" runat="server"> |
<!-- Place the content of the pane here --> |
</telerik:RadPane> |
</telerik:RadSplitter> |
</telerik:RadPane> |
</telerik:radsplitter> |
</div> |