Hi. I am a second year IT student at DUT, i've just received a program to do which includes multiview.I added a view but when i load the page nothing shows on the screen. What could be the problem?

Recommended Answers

All 2 Replies

What is DUT?
Where is your code?

It's the Durban University Of Technology.

        <asp:MultiView ID="MultiView1" runat="server">
            <asp:View ID="View1" runat="server">
                <asp:Panel ID="pnlAccount" runat="server" GroupingText="Something">
                    <asp:Label ID="Label1" runat="server" Text="Full Name: "></asp:Label>
                    <asp:TextBox ID="txtName" runat="server"></asp:TextBox>
                    <br />
                    <asp:Label ID="Label2" runat="server" Text="Account Number:"></asp:Label>
                    <asp:TextBox ID="txtAccNo" runat="server"></asp:TextBox>
                    <br />
                    <asp:Label ID="Label3" runat="server" Text="Account Type:"></asp:Label>

                    <asp:RadioButton ID="radCheque" runat="server" />
                    <br />
                    <br />
                    <asp:Panel ID="pnlCheque" runat="server" GroupingText="Cheque" Width="321px">
                        <asp:Label ID="Label4" runat="server" Text="Number of Transactions :"></asp:Label>
                        <asp:TextBox ID="txtNumberfTransactions" runat="server"></asp:TextBox>
                    </asp:Panel>
                    <br />

                    <asp:RadioButton ID="radSavings" runat="server" />
                    <br />
                    <asp:Panel ID="pnlSavings" runat="server" GroupingText="Savings" Width="320px">
                    </asp:Panel>
                </asp:Panel>
            </asp:View>
        </asp:MultiView>

that's my HTML code. I dont know where i am going wrong

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.