I have a webservice that works asynchrounously. Ive created an event handler to process the results of the service. I want to provide the user with some visual feedbakc that shows the webservice is in operation. Id like to lock all the controls on the page and set the opacity value to say 0.2 and display an anamated gif in the centre of the screen. So when I first call the service I lock and set the animation in progress
Then in the event handler I want to unlock the controls, clear the animated gif, then move to another page.
I was trying to implemnt something similar to the updatepanelanimationextender but im not having much luck getting anything to work.
Ive added a panel to the page that contains all the controls. just before I activate the webservice I change the css of the panel so that its opacity is 0.2 and i have an animtaed gif placed in the centre
then in the event han ...
Go to the complete details ...