Hi I Have 3 Div in my webpage.
I Want to disable only one div of my webpage when updateprogress is in progress.
I Want rest two div will be enabled wen updateprogress is in progress.
<div id="blur"> </div>
<div id="progress">
<%-- Update in progress. Please wait ...--%>
</div>
</asp:UpdateProgress>
This answer is based on some assumptions. For instance, you have a place to put JavaScript and a possibility to trigger it. Also i assume your Update will get handled separately and also has a way to call JS.
simple JS (put in
<script>
-Tags):You would have to do something like this in you triggering control
When you click your trigger, your Javascript will get searched for
startProgress
. This function crawls your whole document and matches the first element withid="progress"
and disables it.On your callback / update you would then call
finished
to enable the div again