我在更新面板中有一个下拉列表
<asp:UpdatePanel ID="UpdatePanelTables" UpdateMode="Conditional" runat="server">
<ContentTemplate>
<asp:DropDownList ID="DropDownListTournamnets" AutoPostBack="true" OnSelectedIndexChanged="OnIndexChanged"
runat="server">
<asp:ListItem Value="1" Text="Something1"></asp:ListItem>
<asp:ListItem Value="2" Text="Something2"></asp:ListItem>
</asp:DropDownList>
</ContentTemplate>
<asp:/UpdatePanel>
当我选择某个项目时,下拉菜单会回发,并且更新面板中的内容会更改。当我刷新页面(使用 f5)时,加载的内容对应于 index=0 的项目,但下拉列表显示刷新之前的项目,如果我现在选择第一个项目回发不会发生。问题仅在 Firefox 中。