2

我在 IE 中出现两个中断 < Br /> 时遇到问题,

如果我有一个正常的休息时间

<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 的源代码,它会生成两个
Once,其 ID 为 brAddAnotherQuote 和一个简单的 "< br />" 直接在它下面这在 Firefox 中不会发生

这可能是什么原因造成的?

4

1 回答 1

3

你为什么不尝试类似以下的东西来代替服务器端的 br 标签。

<asp:Literal runat="server" id="brAddAnotherQuote" Text="<br />"></asp:Literal>
于 2010-11-04T12:18:04.853 回答