IEに表示される2つのブレーク<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のソースコードを見ると
、brAddAnotherQuoteのIDを持つ2つのOnceと、そのすぐ下にある単純な「<br/>」の1つが生成されます。これはFirefoxでは発生しません。
これを引き起こしている可能性がありますか?