Ajax ModalPopup wrong display in IE8 - IE9

倖福魔咒の 提交于 2019-12-12 14:19:19

问题


Im using ModalPopup (AJAX) in my aspx web (VB.NET) using a masterpage, it works fine in (ie6, Firefox) but when i use IE7, IE8, IE9, when i want to open the Modalpopup, is displayed incorrectly (the screen is enlarged and when I use the mouse wheel the screen become bigger and bigger :( ) I've already try changing the doctype, adding '<meta http-equiv="X-UA-Compatible" content="IE=8". I hope you can help me...

*Im using AJAX TOOLKIT 3.5 , VISUAL STUDIO 2008

Here is my code:

ModalPopUpPage



<asp:ModalPopupExtender ID="Panel7_ModalPopupExtender" runat="server"                                                              
        CacheDynamicResults="True" 
        DynamicServicePath="" Enabled="True"                                                                     
        PopupControlID="Panel7" CancelControlID="Button6"
        TargetControlID="label3" OkControlID="label3" 
        RepositionMode="None" >
</asp:ModalPopupExtender>
 <asp:Panel ID="Panel7" runat="server" BackColor="#EAEFF5" BorderStyle="Solid" 
        Width="100%" CssClass="" >
        <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Always">
        <ContentTemplate>
 <asp:GridView ID="GridViewBusAna" runat="server" AllowPaging="True" 
                AutoGenerateColumns="False" CssClass="tab" PageSize="6">
                <Columns>
                    <asp:CommandField ShowSelectButton="True" />
                    <asp:BoundField DataField="pdcNro" HeaderText="" />
                    <asp:BoundField DataField="pdc" 
                        HeaderText="" />
                    <asp:BoundField DataField="" HeaderText="" />
                </Columns>
                <SelectedRowStyle BackColor="#CCCCCC" />
            </asp:GridView>
            <br />
        </ContentTemplate>
        </asp:UpdatePanel>
    </asp:Panel>

回答1:


try this one, change the css, in your css file the position will be relative, u can change it into

position: absolute;


来源:https://stackoverflow.com/questions/14596684/ajax-modalpopup-wrong-display-in-ie8-ie9

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!