Hullo,
What I’d like to do is set up a tabbar control in an ASP.Net 2.0 MasterPage. I’d like it so that when the user clicks a tab, the respective content page is loaded into the asp:ContentPlaceHolder control.
I’ve found this post: dhtmlx.com/docs/products/kb/ … ssr=yes&s=[tabbar]
but using the ajax-html method produces some weird results: clicking on a tab seems to load the both the masterpage and and content page inside the div that the tabbar control lives in. This that there suddenly appears to be another tabbar control immediately beneath the original …
Here is the code I have in my MasterPage.Master file:
|
<asp:ContentPlaceHolder ID=“MainContentHolder” runat=“server”> </asp:ContentPlaceHolder> |
The content pages simply have dummy text in for the time being; example:
<%@ Page Language=“vb” AutoEventWireup=“false” MasterPageFile="~/MasterPage.Master" CodeBehind=“Information.aspx.vb” Inherits=“TestSite.DSSMSSABInfo”
title=“Information Page” %>
<asp:Content ID=“Content1” ContentPlaceHolderID=“MainContentHolder” runat=“server”>
Just some filler information, nothing to see here…
</asp:Content>
Is there a better approach?