<script type="text/javascript">
function showIframe() {
document.getElementById(
"frame1").src = "DrawingTreeView.aspx";
document.all.frame1.style.visibile =
"visible";
}
</script>
.
.
.
<
td>
<telerik:RadDockZone ID="RadDockZone1" runat="server" Height="200px" Width="200px" BorderWidth="0">
<telerik:RadDock ID="RadDock1" runat="server" Title="Drawing Tree"
DefaultCommands="All" Resizable="True"
OnClientDragStart="OnClientDragStart" OnClientDockPositionChanged="OnClientDockPositionChanged"
DockHandle="TitleBar" EnableAnimation="true" EnableRoundedCorners="true">
<ContentTemplate>
<asp:ImageButton runat="server" ID="imgWebsiteThumbnailImage" OnLoad="btnShowThumbnailImage_Click" Visible="true" OnClientClick="showIframe" />
<iframe id="frame1" runat="server" width="100%" height="100%" visible="false" />
</ContentTemplate>
</telerik:RadDock>
</telerik:RadDockZone>
</td>