
August 6th, 2008, 03:34 AM
|
|
Registered User
|
|
Join Date: Aug 2008
Posts: 1
Time spent in forums: 25 m 23 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by dcarva If you're trying to do this programmatically, I think you need to do one of two things:
1) Refresh the main frame page. Have not tried this, but refreshing that page might refresh the entire frameset.
2) One of your pages could run javascript code that will refresh all frames. Ex:
<script language="javascript">
parent.frames[1].location.reload();
parent.frames[2].location.reload();
</script>
etc... |
for the single frameset it is working. How can we reload the frames of the multiple framesets?
ie I am having 3 framesets namely top,bottom,main...each frameset have atleast one frames...Now my question is how we reload the top frameset from the frame of the top frameset itself
help me plz.....
|