As I develop my ASP.Net web page, the challenge of loading a significant amount of data in up to 60 seconds arises. I want the user to be informed that the process may take some time. My solution is to dim the screen slightly and display "Loading, please wait" on top. This involves creating a div within the <UpdateProgress>
tag, setting it to black with semi-transparency, and applying CSS attributes like
position: fixed; width:100%; height: 100%;
.
The issue lies in how ASP.net converts the entire <UpdateProgress>
into a div that wraps around my custom div. Consequently, my div only fills its parent div.
Hence, my inquiry is: how can I adjust the CSS style of <UpdateProgress>
? (This element seems to lack a CssClass
property unlike other ASP.net elements).