ASP.net Ajax tab container not appearing

Posted by Eyla on Stack Overflow See other posts from Stack Overflow or by Eyla
Published on 2010-01-15T00:43:09Z Indexed on 2010/03/20 9:01 UTC
Read the original article Hit count: 600

Filed under:
|
|
|

I created new web project using VS 2008 with enabled Ajax template with C# and Framework 3.5.

I added Ajax reference to the project and I can see all Ajax toolkit in my tool box.

The problem that when I add tab container with Tab Panels then run the projects nothing appear on the browser and I tried few browsers.

I'm including my code and I wish that someone would help me.

Regards,

My Code: ................................................................

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Contacts._Default" %>

<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        <title>Untitled Page</title>
    </head>
    <body>
        <form id="form1" runat="server">
            <asp:ScriptManager ID="ScriptManager1" runat="server" />
            <div>

                <asp:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="0">

                    <asp:TabPanel runat="server" HeaderText="TabPanel1" ID="TabPanel1">
                        <ContentTemplate>
                          tab 1
                        </ContentTemplate>
                    </asp:TabPanel>

                    <asp:TabPanel runat="server" HeaderText="TabPanel2" ID="TabPanel2">
                        <ContentTemplate>
                          tab 2
                        </ContentTemplate>
                    </asp:TabPanel>

                    <asp:TabPanel runat="server" HeaderText="TabPanel3" ID="TabPanel3">
                        <ContentTemplate>
                          tab 3
                        </ContentTemplate>
                    </asp:TabPanel>

                </asp:TabContainer>

            </div>

        </form>
    </body>
</html>

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about asp.net-ajax