我的ASP.NET webform中有DropdownList,它不会在更改时自动恢复。
如果我选择企业模式或在Firefox中打开它,它会起作用。
我在这里缺少什么?
代码:
<asp:DropDownList ID="FormatsDropDownList"
runat="server"
OnSelectedIndexChanged="FormatsDropDownList_SelectedIndexChanged"
AutoPostBack="true">
<asp:ListItem Text="Item1" Value="Value1" Selected="True"></asp:ListItem>
<asp:ListItem Text="Item2" Value="Value2"></asp:ListItem></asp:ListItem>
</asp:DropDownList>
答案 0 :(得分:0)
Net 4.0的解决方案:
按照此处的步骤操作: http://rikter.com/articles/2013/12/internet-explorer-11-and-asp-net/
*但请使用此处的浏览器文件执行第1步: http://blogs.telerik.com/docs/default-source/marinbratanov_files/telerik_ie11_browser_file_fix.zip?sfvrsn=2
一旦我将这个新文件放入app_browsers文件夹,清除临时文件,运行regbrowsers.exe并重置IIS,该网站就可以在没有兼容模式的IE 11中运行。