Access UpdatePanel inside View from Another UpdatePanel ASP.Net - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T17:56:46Z http://stackoverflow.com/feeds/question/502315 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/502315/access-updatepanel-inside-view-from-another-updatepanel-asp-net 0 Access UpdatePanel inside View from Another UpdatePanel ASP.Net Sandhurst 2009-02-02T05:56:40Z 2009-02-17T00:04:40Z <p>I have two updatePanels UpdatePanel 1 contains a button UpdatePanel 2 is inside a Multiview View1</p> <p>&lt;Multiview> &lt;View1> &lt;UpdatePanel2> &lt;/UpdatePanel2> &lt;/View1> &lt;/Multiview></p> <p>Multiview ActiveIndex is set to -1 Now I have attached an AsynPostBackTrigger on UpdatePanel2 which is associated with button click.</p> <p>I want to show View1 when I click button in UpdatePanel2</p> http://stackoverflow.com/questions/502315/access-updatepanel-inside-view-from-another-updatepanel-asp-net/555101#555101 0 Answer by teedyay for Access UpdatePanel inside View from Another UpdatePanel ASP.Net teedyay 2009-02-17T00:04:40Z 2009-02-17T00:04:40Z <p>You're going to need to put the update panel around the MultiView, rather than inside View1:</p> <pre><code>&lt;UpdatePanel2&gt;&lt;MultiView&gt;&lt;View1&gt;&lt;/View1&gt;&lt;/MultiView&gt;&lt;/UpdatePanel2&gt; </code></pre> <p>An UpdatePanel will render on the page as either a div or a span (a div by default).</p> <p>When you do a callback (such as when you click the button inside the UpdatePanel), ASP.NET sends a message to the browser telling it how to update the contents of the divs that represent your UpdatePanels. This message is received and handled in javascript.</p> <p>If you're not showing View1 when you first arrive at the page, then UpdatePanel2 won't get rendered at all. Therefore, when your button click causes the callback, there's no div on the rendered page for javascript to change the contents of.</p>