I have an asp page which has a form containing data. There is an update button which calls a popup where I can update the data.
Now when I update the data in popup page. It should close and refresh the asp page.
I have added this code:
<script language="javascript" type="text/javascript">
alert('Record has been updated.');
opener.RefreshData();
this.window.close();
</script>
I get alert message but asp page does not refresh thus I am unable to see updated data unless I refresh manually.
Any immediate help will be appreciated.
Thanks
Now when I update the data in popup page. It should close and refresh the asp page.
I have added this code:
<script language="javascript" type="text/javascript">
alert('Record has been updated.');
opener.RefreshData();
this.window.close();
</script>
I get alert message but asp page does not refresh thus I am unable to see updated data unless I refresh manually.
Any immediate help will be appreciated.
Thanks