マスターページを使用して aspx Web (VB.NET) で ModalPopup (AJAX) を使用していますが、(ie6、Firefox) では正常に動作しますが、IE7、IE8、IE9 を使用すると、Modalpopup を開きたいときに正しく表示されません (画面が拡大され、マウスホイールを使用すると画面がどんどん大きくなります:( )私はすでにDoctypeを変更しようとしましたが、'<meta http-equiv="X-UA-Compatible" content="IE=8".
助けていただければ幸いです...
*AJAX TOOLKIT 3.5、VISUAL STUDIO 2008を使用しています
これが私のコードです:
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>