Sending message to parent from a popup
-
I have a page that uses a master page. I have a button that when clicked, should display a popup message like a confirm message, then process (add or remove data to the table). If processing is chosen, then I want to send some message back to the parent to refresh or do something else. With javascript and html controls like input type=submit etc, sending messages back and forth is simple. But how do I do it when I have server side processing to do? I am sure there are ways. Thanks.
-
I have a page that uses a master page. I have a button that when clicked, should display a popup message like a confirm message, then process (add or remove data to the table). If processing is chosen, then I want to send some message back to the parent to refresh or do something else. With javascript and html controls like input type=submit etc, sending messages back and forth is simple. But how do I do it when I have server side processing to do? I am sure there are ways. Thanks.
There is this new thing people have been talking about, maybe you've heard of it; Ajax?
only two letters away from being an asset
-
There is this new thing people have been talking about, maybe you've heard of it; Ajax?
only two letters away from being an asset
-
Yes, sure I did. I am using some basic AJAX on my pages to prevent refreshing of the whole page. But I don't know how to solve this problem I mentioned. Can you please direct me to the right way? Thanks.
-
-
Should I visit the town of Ajax as well? In the google search I found that too. Just kidding - thanks.
window.opener.parentfunction(parametors to send) i think it will help you where parent function is written in javascript of parent page from where popup is open.
umerumerumer