Many developers still asking about UpdatePanel problem with some server side controls, like MultiView and Buttons.
In this scenario,
You have built a simple page with MultiView control inside an UpdatePanel, each view will act as a (Wizard Step), and at the end there is a button that asks you if you need to repeat the steps again and go to step 1.
Problem:
The button doesn't move you from this view to the first view of the multiview control.
Solution:
<
asp:Button ID="Button1" runat="server" CausesValidation="false" Text="Button" />
Simply change the CauseValidation property to false.
Explanation:
CauseValidation means that this button will perform a client side validation, which mean in turn that it will not be able to postback the updatepanel.
By setting the button - or anyother server side control - you will be able to perform any postback operations.
Hope that help you!
Mohamed Nagieb
"Jocker_Wow"
Regards...
M.Nagieb
Jocker_Wow