Link to home
Start Free TrialLog in
Avatar of karlhsc
karlhscFlag for Afghanistan

asked on

MultiView Issue

Hello, I've got a MultiView Control that I am experiencing an issue with.  Here is some pseudocode:

<MultiView>

<View1>
This view contains a button that, after clicked, moves to View2
</View1>

<View2>
Contains an animated gif ("Processing...")
</View2>

<View3>
Contains a massive GridView that takes about 4-5 seconds to render.
</View3>

</MultiView>


My issue is that View2 is never displayed to the user.  After the user clicks the button in View1, View1 sits for 4-5 seconds and then View3 is displayed (including the massive GridView).  I would really like for View2 to be displayed so that my users see the "Processing..." gif.
ASKER CERTIFIED SOLUTION
Avatar of guru_sami
guru_sami
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of karlhsc

ASKER

I used UpdatePanel, UpdateProgress, and ScriptManager.