I have frameset with 3 frames
topFrame
leftFrame
mainFrame
in my left frame i have links to several topic pages this also shows the count of topics, the topic pages shows in the mainFrame and the user can enter new topics, when the user submits a new topic he is then redirected to an empty page and from there he is directed back to the topic page in the mainFrame via this code
However the count in the left frame is not updated and I have placed the following code in the topic page to do this
My question is can i refresh both the mainFrame and the leftFrame from the empty page
I have tried this without success
Regards
Olly
topFrame
leftFrame
mainFrame
in my left frame i have links to several topic pages this also shows the count of topics, the topic pages shows in the mainFrame and the user can enter new topics, when the user submits a new topic he is then redirected to an empty page and from there he is directed back to the topic page in the mainFrame via this code
Code:
<body onLoad="window.opener.location.reload(); window.close();">
However the count in the left frame is not updated and I have placed the following code in the topic page to do this
Code:
onLoad="parent.leftFrame.location.reload(true)"
My question is can i refresh both the mainFrame and the leftFrame from the empty page
I have tried this without success
Code:
<body onLoad="window.opener.location.reload(); parent.leftFrame.location.reload(true);window.close();">
Regards
Olly