我遇到了仅在 IE10 和带有 IIS7.5 的 Win2008 中出现的格式问题。通过开发者工具栏使用IE10兼容模式,IE7、8、9、10均适用于Win2003和IIS6。它也适用于 IE7、8、9 和带有 IIS7.5 的 Win2008。但是,对于 IE10 和 IIS7.5,相同的代码会以不同的方式格式化文本框。(IE10兼容模式正常工作)
有两个主要问题 - 评论文本框没有以适当的宽度显示(它以默认宽度显示)。这是代码(所有JS都正常工作):
<asp:TextBox runat="server" Height="50px" ID="JustificationTxt" TextMode="MultiLine"
onkeyup="AutoExpandTextbox(this)" onfocus="OnFocusJustificationComments(this)"
onblur="OnBlurJustificationComments(this)" Columns="50" Rows="10" Width="98%"
Text="<%# VM.commentText %>" />
此外,一些只读文本框没有以正确的颜色呈现(但是只读属性正在工作):
<asp:TextBox BackColor="#eeeeee" ReadOnly="True" ID="ACWPcumTxt" runat="server" Text="<%# VM.ETCGridRow.ACWPcumDisplay%>" />
请记住,所有这些都适用于其他配置。
我错过了什么?