increase z index for a button/link in a div
-
Hi, i have a image with Thread.Sleep (5000)that makes background opaque/ non clikable for 5 secs. Now i have a close image in a div that has z index higher than the background page to stop the processing. My problem is that even the image is disabled & the click event is not fired... how can i achieve the same?? Have reffered this url for coding the same- http://mattberseth.com/blog/2007/08/disable\_updatepanel\_contents\_d.html Code block:- <pre><div id="updateProgressDiv" class="updateProgress" style="display:none"> <div align="center" style="position:relative"> <img alt="Processing...." src="loading.gif" style="position:relative;width:40;height:40;margin-top:53px;z-index:10001" /> <span class="updateProgressMessage">Processing your request...<br />Please wait.....</span><br /> <div id="div2" align="right" style="position:relative;z-index:10001"> <asp:image id="img2" runat="server" imageurl="~/close.gif" xmlns:asp="#unknown" /> </div> </div></div></pre> Appreciate help in this regard... Thx in advance.. Regards, Yogesh