How to forward a ModalDialog to a new url
Last few days I was fighting with Modal Dialog ( opened with the method showModalDialog ) to forward to a new page with out opening a new window.The usual document.location.href = newurl; works but opens in a new window. Then I got a simple solution. window.name = “somename” window.open(newurl, window.name) well this works...