I have a site done in frames. Is there a way to reload one frame (ex: sidebar) while inside the main.asp frame. I am changing a boolean in the main frame and the navigation on the sidebar frame depends on the value of this boolean...therefore it needs to be reloaded.
I can do it with the click on a link but I want to do it within the code.
<FRAMESET COLS="135,*" FRAMEBORDER="NO" BORDER="0" FRAMESPACING="0">
<FRAME NAME="sidebar" SCROLLING="NO" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" frameborder="no" SRC="sidebar.asp">
<FRAME NAME="main" SCROLLING="YES" leftmargin="5" topmargin="5" marginwidth="5" marginheight="5" frameborder="no" SRC="main.asp">
</FRAMESET>
I can do it with the click on a link but I want to do it within the code.
<FRAMESET COLS="135,*" FRAMEBORDER="NO" BORDER="0" FRAMESPACING="0">
<FRAME NAME="sidebar" SCROLLING="NO" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" frameborder="no" SRC="sidebar.asp">
<FRAME NAME="main" SCROLLING="YES" leftmargin="5" topmargin="5" marginwidth="5" marginheight="5" frameborder="no" SRC="main.asp">
</FRAMESET>