我想在 chrome 中使用 asp:Panel:
我的代码很简单:
<asp:Panel ID="pnlLoginErrorMessage" runat="server" style="height:50px; Width:100%;" GroupingText="Panel">
<asp:TextBox id="tbLoginMessage" onFocus="blur();" style="Width:100%;" TextMode="MultiLine" BorderWidth="0" BorderStyle="None" ReadOnly="true" Wrap="true" runat="Server" />
</asp:Panel>
chrome 中的结果如下所示:
不显示分组文本,也没有面板边框。它也发生在 IE10 中(没有兼容模式)。
为什么?