> How do I refresh the contents of one frame while performing an action in
> another? I am updating a column in my database in one frame and I have a
> list of data in another frame. When updating the data I want the other
> frame to reflect the change. Does that make sense?
> --------------------------------------------------------------------------
----
>
I am doing the very same thing.
Try this.
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function refreshFrame() {
top.frames['name_of_frame'].window.location.href = "page_to_load.cfm";
}
// End -->
</script>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function refreshFrame() {
top.frames['show'].window.location.href =
"package.cfm?package_id=<cfoutput>#form.package_id#</cfoutput>";
}
// End -->
</script>
<body onload="refreshFrame()">
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.