Refreshing A Frameset
843835Mar 14 2002 — edited Apr 1 2002I have a frameset
<FRAMESET COLS="0%,*" FRAMEBORDER=NO FRAMESPACING="0">
<frame src="blank.htm" name="array" frameborder=0 scrolling=no NORESIZE MARGINWIDTH="0" MARGINHEIGHT="0">
<frame src="Login.jsp;" name="mainfrm" frameborder=0 scrolling=auto MARGINWIDTH="0" MARGINHEIGHT="0">
</frameset>
In the mainfrm is where ou login and then go to all the other jsp pages of the site the array. Is just for storing global javascript variables. The problem is whenever I hit refresh on the browser it reloads Login.jsp not the page the user is on. Why is this happening? I have tried other Framesets wthout jsp pages and it works fine.
Keith