Below i show you how to give waiting message during the postback of updatepanel in asp.net
I used “BackGroudWaiting” CSS class as background style.
Background style CSS
.BackGroudWaiting
{
position: fixed; text-align: center; height: 100%; width: 100%; top: 0; right: 0; left: 0; z-index: 9999999; background-color: #000000; opacity:0.8;
}
Using .gif Image as waiting message
and also we can use customly created div as waiting msg, below is the example with CSS.
Message CSS Styles
.WaitingMessageStyle {
position: fixed;
padding: 50px;
background-color: #050404;
font-size: 36px;
left: 30%;
top: 45%;
color: #FFF;
border-style: groove;
border-width: 1px;
border-color: #5A5A55;
}
Hope you learned something throw this post,
Thanks,
Udara Eshan