I have a a page in a frame called meetingheader.asp which redirects to another page using the following when someone clicks on a link:
<script>
function acceptbooking()
{
location = 'mail/acceptandnotify.asp?MeetingID=<% = MeetingID %>'
}
</script>
Then in my acceptandnotify.asp page the plan is to update the main window behind the popup then close the popup with the following:
<script>
top.opener.location.reload(true);
top.close();
</script>
The main window refreshes but instead of closing the popup it goes back to the first page meetingheader.asp.
Any ideas please?
Thanks very much
<script>
function acceptbooking()
{
location = 'mail/acceptandnotify.asp?MeetingID=<% = MeetingID %>'
}
</script>
Then in my acceptandnotify.asp page the plan is to update the main window behind the popup then close the popup with the following:
<script>
top.opener.location.reload(true);
top.close();
</script>
The main window refreshes but instead of closing the popup it goes back to the first page meetingheader.asp.
Any ideas please?
Thanks very much