/* Progress Bar Style Classes */
.progressBackgroundFilter
{
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;
position: absolute;
height: expression(document.body.clientHeight + "px" );
width: expression(document.body.clientWidth + "px" );
}
.processMessage
{
top: 31%;
left: 43%;
padding: 10px;
overflow: hidden;
width: 10%;
z-index: 1000;
background-color: #787878;
position: absolute;
top: expression(document.body.clientHeight * .30 + "px" );
filter: alpha(opacity=50);
opacity: 0.5;
vertical-align: middle;
}
/* Progress Bar Control */
<asp:UpdateProgress ID="updateProgress" runat="server">
<ProgressTemplate>
<div id="progressBackgroundFilter" class="progressBackgroundFilter">
<>div>
<div id="processMessage" class="processMessage">
<table>
<tr>
<td valign="middle">
Loading...
<>td>
<td valign="middle">
<img alt="" src="UsersImages/waiting.gif" style="width: 40px; height: 40px" />
<>td>
<>tr>
<>table>
<>div>
<>ProgressTemplate>
2 comments:
please tell me where is the code behind...the post is not clear.at all.
efforts appreciated though
There is no need of code behind file.It automatically displayed according to time taken by browser to display page contents.
Post a Comment