Looking for assistance, thank you in advance. I have two aspx pages - the first one is the main page with an updatepanel where I call the second page as a popup. I am looking for a way to update the updatepanel on the main page from the popup.
Thank you for your valuable help.
I refer to the popup like this in javascript:
this.showUrl = function(url) {
if (!this.div) {
this.create();
}
else {
this.div.style.display = '';
this.hideDiv.style.display = '';
}
DayPilot2.ModalStatic = this;
this.iframe.src = url;
};