I want to open a wdw with a given ContentUrl. After navigating to wanted destination i want to close the wdw and reload the parent with containing the navigated ContendUrl.
With
function WebDialogWindow1_HeaderMouseDown(sender, eventArgs) {
<% Session["Destination"] = "http://www.test.com";%>
window.parent.location.reload();
}
it works with the given "..test.com", but how i can replace "...test.com" with the current ContenUrl of wdw?
Hello Frank,Please let me know if you have any further questions regarding this issue.
Hello Frank
You can get the url like this var cURL = ig_controls.WebDialogWindow1.get_contentPane().get_contentUrl();I have attached a sample demonstrating how to get it.