I have created a wizard style form which seperates form fields into a series of pannels.
Example
=======
<asp:Panel id="firstView" runat="server">
.
.
.
</asp:Panel>
<asp:Panel id="secondView" runat="server">
.
.
.
</asp:Panel>
=========
The user clicks next and back buttons to navagate through the different pannels. The form works fine in Internet Explorer, but does not seem to work in Netscape or Firefox. In these browsers when you click next it never shows the second pannel.
Why?