Hi All,
I have a search button and a grid view control which is inside the update panel!! i am using updatepanelanimationextender to fadeout all the control when the search is happening and show a progress bar at the middle,
Everything works fine when i click search button first time...How ever when i click the search button second time the progress bar loads continously and dont give any results, i have to refresh page and do all over again!!.
I am attaching the code here
<ajct:UpdatePanelAnimationExtender ID="upae1" runat="server" TargetControlID="upSearchPanel"><Animations><OnUpdating><Parallel duration="0"><EnableAction AnimationTarget="gv1" Enabled="false" /><EnableAction AnimationTarget="mvnoPaging" Enabled="false" /><EnableAction AnimationTarget="mvnoPagingTop" Enabled="false" /><ScriptAction Script="onUpdating();" /><FadeOut minimumOpacity=".5" /></Parallel></OnUpdating><OnUpdated><Parallel duration="0"><FadeIn minimumOpacity=".5" /><EnableAction AnimationTarget="gv1" Enabled="true" /><EnableAction AnimationTarget="mvnoPaging" Enabled="true" /><EnableAction AnimationTarget="mvnoPagingTop" Enabled="true" /><ScriptAction Script="onUpdated();" /></Parallel></OnUpdated></Animations></ajct:UpdatePanelAnimationExtender>
Also on button search click i am calling a _dopostback() function !!
Any help will be appreciated
Thanks