UpdateProgress包含更新面板

时间:2010-09-21 07:43:03

标签: c# asp.net updatepanel updateprogress

有没有办法让updateprogress完全覆盖更新面板?

(Asp.net .net 4)

2 个答案:

答案 0 :(得分:4)

<asp:updateprogress associatedupdatepanelid="UpdatePanel3" 
    id="updateProgress" runat="server">
    <progresstemplate>
        <div id="progressBackgroundFilter"></div>
        <div id="processMessage"> Loading...<br /><br />
             <img alt="Loading" src="images/ajax-loader.gif" />
        </div>
    </progresstemplate>
</asp:updateprogress> 

#progressBackgroundFilter {
position:fixed; 
top:0px; 
bottom:0px; 
left:0px;
right:0px;
overflow:hidden; 
padding:0; 
margin:0; 
background-color:#000; 
filter:alpha(opacity=50); 
opacity:0.5; 
z-index:1000; 
}
#processMessage { 
position:fixed; 
top:30%; 
left:43%;
padding:10px; 
width:14%; 
z-index:1001; 
background-color:#fff;
border:solid 1px #000;

答案 1 :(得分:0)

我一直在使用FlanAjaxControls来覆盖UpdatePanel。