Hi, want somme help, thank you by advance. I've two page aspx, the first is the main page containe an updatepanel in which I call the second page as popup. I need a way for update the updatepanel (in main page) from the popup.
Thank you for you precious help.
I call popup as this follow 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;
};