Link to home
Start Free TrialLog in
Avatar of mrJerm
mrJerm

asked on

javascript refresh frame

I have a two frame page with a submit button in the top frame which posts the top frame and writes the bottom frame to file via some perling.  I would like to incorporate an "OnSubmit" with the button to refresh the bottom frame, but my limited java scripting abilities have gotten me no where.  I've tried the following, but it seems to be sourcing the cache.
<from perl script>
print "<script language=\"javascript\">";
print "<!--";
print "function updateframe(newpage) {";
print "top.status.location = newpage;";
print "}";
print "-->";
print "</script>";
Avatar of tlik
tlik

Try
window.<bottomframename>.location = newpage;
or
<bottomframename>.location = newpage;
ASKER CERTIFIED SOLUTION
Avatar of hanneman
hanneman

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
This question has been abandoned. I will make a recommendation to the
moderators on its resolution in a week or two. I appreciate any comments
that would help me to make a recommendation.
<note>
   In the absence of responses, I may recommend DELETE unless it is clear
   to me that it has value as a PAQ.  Silence = you don't care
</note>

Cd&
It is time to clean this abandoned question up.  

I am putting it on a clean up list for CS.

<recommendation>
points to hanneman

</recommendation>

If anyone participating in the Q disagrees with the recommendation,
please leave a comment for the mods.

Cd&
Comment from expert accepted as answer

Computer101
E-E Admin