Click here to Skip to main content
15,889,693 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
ASP.NET
<ajaxToolkit:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
							<ajaxToolkit:TabContainer  runat="server" ID="Tabs" Height="138px" ActiveTabIndex="0"
    Width="402px">
    <ajaxToolkit:TabPanel  runat="server" ID="Panel1" HeaderText="Address">
        <contenttemplate>
            <asp:UpdatePanel ID="updatePanel1" runat="server">
                <contenttemplate>
                    <table>
                        <tr>
                            <td>
                                First Name:
                            </td>
                            <td>
                                <asp:TextBox ID="txtName" runat="server" />
                            </td>
                        </tr>
                        <tr>
                            <td>
                                Address:
                            </td>
                            <td>
                                <asp:TextBox ID="txtAddress" runat="server" />
                            </td>
                        </tr>
                    </table>
                </contenttemplate>
            
        </contenttemplate>
    
    <ajaxToolkit:TabPanel  runat="server" ID="Panel3" HeaderText="Nested Tabs">
        <contenttemplate>
            <ajaxToolkit:TabContainer  runat="server" ID="NestedTabContainer1" Height="138px"
                ActiveTabIndex="0" Width="402px">
                <ajaxToolkit:TabPanel  runat="server" ID="TabPanel1" HeaderText="Address">
                    <contenttemplate>
                        <asp:UpdatePanel ID="updatePanel2" runat="server">
                            <contenttemplate>
                                <table>
                                    <tr>
                                        <td>
                                            First Name:
                                        </td>
                                        <td>
                                            <asp:TextBox ID="TextBox1" runat="server" />
                                        </td>
                                    </tr>
                                    <tr>
                                        <td>
                                            Address:
                                        </td>
                                        <td>
                                            <asp:TextBox ID="TextBox2" runat="server" />
                                        </td>
                                    </tr>
                                </table>
                            </contenttemplate>
                        
                    </contenttemplate>
                
                <ajaxToolkit:TabPanel  runat="server" ID="TabPanel2" HeaderText="Email">
                    <contenttemplate>
                        Email:
                        <asp:TextBox ID="txtEmail" runat="server" />
                    </contenttemplate>
                
                <ajaxToolkit:TabPanel  runat="server" ID="TabPanel3" HeaderText="Login Details">
                    <contenttemplate>
                        <table>
                            <tr>
                                <td>
                                    User Name:
                                </td>
                                <td>
                                    <asp:TextBox ID="TextBox3" runat="server" />
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    Password:
                                </td>
                                <td>
                                    <asp:TextBox ID="TextBox4" runat="server" />
                                </td>
                            </tr>
                    </table></contenttemplate>
                
            
        </contenttemplate>
    
    <ajaxToolkit:TabPanel  runat="server" ID="Panel2" HeaderText="Login Details">
        <contenttemplate>
            <table>
                <tr>
                    <td>
                        User Name:
                    </td>
                    <td>
                        <asp:TextBox ID="txtUser" runat="server" />
                    </td>
                </tr>
                <tr>
                    <td>
                        Password:
                    </td>
                    <td>
                        <asp:TextBox ID="txtPass" runat="server" />
                    </td>
                </tr>
        </table></contenttemplate>
Posted
Updated 2-Feb-14 2:30am
v2

1 solution

None of your ajaxToolkit tags are closed!!!
ToolkitScriptManager, TabContainer, TabPanel, UpdatePanel...
Reformat your tags - including nested...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900