在我的项目中,我使用的是更新进度条。单击该按钮时,将禁用后台页面。它在IE7,Firefox和Chrome中运行良好。但在IE6中,下拉列表显示在进度条后面。任何人都可以帮我解决这个问题。代码如下:
<%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="fp_t012stk.aspx.vb" Inherits="fp_t012stk" title="Current Stock Report" %>
<asp:UpdateProgress id="UpdateProgress1" AssociatedUpdatePanelID="UpdatePanel1" runat="server" DisplayAfter="0">
<progresstemplate>
<div id="Layer1" style="top:45px; left:0px; width:80%; height:100%; z-index:1; background:gray; display:block; vertical-align:middle; text-align:center; padding:130px; font: 18px/1.6 Times New Roman; margin:0px 0px 0px 0px; background-color:Gray;filter: alpha(opacity=60); opacity: 0.1; width:76%; height:100%; overflow:auto; text-decoration:none; color:Black; position:absolute; top:0px; left:0%; margin-left:-10px">
<asp:Image ID="imgloading" runat="server" ImageUrl="~/images/ajax-loader2.gif" /><br />
</div>
</progresstemplate>
</asp:UpdateProgress>
<br />
</asp:Content>
提前致谢
答案 0 :(得分:0)
检查你的html输出。并查看下拉列表的z-index和进度条样式值。可能两者都有1,或者下拉一个较小的值(0,-1)。尝试指定进度条样式的最低值而不是其他控件。