update panel use inside multi view control
how to use update panel when use multi view inside multiview controls
Answers (2)
0
Hi,
Write like this.
- <asp:UpdatePanelID="Updatepanel"runat="server">
- <ContentTemplate>
- <asp:MultiViewID="MultiView"runat="server">
- <asp:ViewID="View1"runat="server">
- </asp:View>
- <asp:ViewID="View2"runat="server">
- </asp:View>
- </asp:MultiView>
- </ContentTemplate>
- </asp:UpdatePanel>
0
Please follow https://msdn.microsoft.com/en-us/library/bb398867.aspx
However I will suggest you to forgot update panel and start doing same thing using JavaScripts or Jquery
- <asp:updatepanel>
- <asp:multiview>
- <asp:view/>
- <asp:view/>
- <asp:view/>
- </asp:multiview>
- </asp:updatepanel>