2
Answers

update panel use inside multi view control

how to use update panel when use multi view inside multiview controls
Answers (2)
0
Rajeesh Menoth

Rajeesh Menoth

NA 24.7k 629.4k 8y
Hi,
Write like this.
  1. <asp:UpdatePanelID="Updatepanel"runat="server">
  2. <ContentTemplate>
  3. <asp:MultiViewID="MultiView"runat="server">
  4. <asp:ViewID="View1"runat="server">
  5. </asp:View>
  6. <asp:ViewID="View2"runat="server">
  7. </asp:View>
  8. </asp:MultiView>
  9. </ContentTemplate>
  10. </asp:UpdatePanel>
0
Shakti Singh Dulawat

Shakti Singh Dulawat

NA 6.4k 127k 8y
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
  1. <asp:updatepanel>
  2. <asp:multiview>
  3. <asp:view/>
  4. <asp:view/>
  5. <asp:view/>
  6. </asp:multiview>
  7. </asp:updatepanel>