Please help! I am tearing out my eyes trying to figure this out. I have a test server IIS 5.0 and a production server IIS 6.0. The test server holds the viewstate of a 3 dropdowns with a problem. However, the production server only holds the viewstate of 2 of the dropdowns. Why would it work on one server and not the other? Why would it work for 2 of the controls but not all 3? THANK YOU IN ADVNACE FOR THE HELP.
I am using ASP.NET with VB (no code behind). Here is a snippet of the code. DropList_OS is the problematic dropdown.
<asp:DropDownList id="dropList_Dates" runat="server" dataTextFormatString="{0:d}" CssClass="Headings" AutoPostBack="True">
<asp:ListItem Value="{0}" Selected="True"></asp:ListItem>
</asp:DropDownList>
<asp:DropDownList id="dropList_Regions" runat="server" CssClass="Headings" AutoPostBack="True">
<asp:ListItem Value="{0}" Selected="True"></asp:ListItem>
</asp:DropDownList>
<asp:DropDownList id="dropList_OS" runat="server" CssClass="Headings" AutoPostBack="True"></asp:DropDownList>