Morné
Morné

Reputation: 69

How to .Update() the Update panel from another Form?

I have searched and done all my research but I can't seem to find the answer that I need.

I need my Update panel on Page1.aspx to change/update when I click on the submit button on Page2.aspx...

Any help will be gladly appreciated.

Thanks :)

Upvotes: 2

Views: 1536

Answers (1)

IUnknown
IUnknown

Reputation: 22448

<asp:Button Text="text" runat="server" OnClientClick="window.opener.__doPostBack('UpdatePanel1', '');" />

Upvotes: 1

Related Questions