I have a template that displays a table of IP addresses and additional information about that address. When the user clicks on an address, a new window opens with a form to edit one of the fields. When the user submits the form, he gets a success message and a button to close the window. OK, so far. What I want to happen is, when the user closes the form window, I want the first page to refresh, so that the user's changes are visible.
Here is a portion of my form window after the form has been processed:
<!--- Display sucess message to user. --->
<CFOUTPUT>
<FONT SIZE="+2" COLOR="Green">
Thank you, #GetUser.PersonFirstName#!<BR><BR>
Your request has been processed.<BR>
</FONT>
</CFOUTPUT>
<form>
<input type=button value="Close Window" onClick="javascript:window.close();">
</form>
How do I close the window, and refresh the first page? Thanks!
Calista :-X
Jedi Knight,
Champion of the Force
Here is a portion of my form window after the form has been processed:
<!--- Display sucess message to user. --->
<CFOUTPUT>
<FONT SIZE="+2" COLOR="Green">
Thank you, #GetUser.PersonFirstName#!<BR><BR>
Your request has been processed.<BR>
</FONT>
</CFOUTPUT>
<form>
<input type=button value="Close Window" onClick="javascript:window.close();">
</form>
How do I close the window, and refresh the first page? Thanks!
Calista :-X
Jedi Knight,
Champion of the Force