我有两个休息的问题< Br />出现在IE中,
如果我有正常的休息时间
<wcl:GridView ....... />
<br />
<wcl:Button runat="server" ID="btnAddAnotherQuote" OnClientClick='AddDeliveryQuote(this);return false;' />
<wcl:HelpDialog runat="server" ID="hdDeliveryQuotes" />
然后它出现在Firefox和IE中。 但如果我这样做:
<br runat="server" id="brAddAnotherQuote" />
<wcl:Button runat="server" ID="btnAddAnotherQuote" OnClientClick='AddDeliveryQuote(this);return false;' />
<wcl:HelpDialog runat="server" ID="hdDeliveryQuotes" />
然后查看IE的源代码,它产生两个
一旦有一个brAddAnotherQuote的ID和一个简单的“&lt; br /&gt;”直接在它下面
这在Firefox中不会发生
导致这种情况的原因是什么?
答案 0 :(得分:3)
为什么不尝试使用以下代替服务器端br标签的内容。
<asp:Literal runat="server" id="brAddAnotherQuote" Text="<br />"></asp:Literal>