I hate frames. This is the first time that I have been unable to talk people out of using frames. So I am stuck with them.
Someone else wrote the pages with frames and I am supposed to add the forms and ASP.
Here is the Frameset:
Code:
<frameset border="0" frameborder="no" framespacing="0" rows="101,*">
<frame name="top" noresize scrolling="no" src="top.html">
<frameset border="0" cols="123,*" frameborder="no" framespacing="0">
<frame name="left" noresize scrolling="no" src="left.html">
<frame name="main" noresize src="main.htm">
</frameset>
</frameset>
So the problem is:
left.html loads pages into frame "main" from frame "left" it works fine until it loads on of my forms which calls the database and whatnot, then when my form is copletely done I reload main.htm into fram "main". Once that is done left.html will no longer load pages into fram "main" they all load into a new browser.
Any ideas what could be causing this, or a way to fix it?
Thank you for your time.