I have a window that I open with .showModalDialog because the user has to use this windo before going back to parent etc. My problem is that I want to give the user a button to refresh this window as they are working with it. I am using,
<script>
function refreshPage(){
thisPage = document.location.href
document.location = thisPage
}
</script>
<input type=button onClick="refreshPage()" value="Refresh">
Problem is it opens another instance of the window!!
How can I refresh this window?
Thank You
<script>
function refreshPage(){
thisPage = document.location.href
document.location = thisPage
}
</script>
<input type=button onClick="refreshPage()" value="Refresh">
Problem is it opens another instance of the window!!
How can I refresh this window?
Thank You