Frames and tables on same page?
I need to structure a page with tables, but want to include 2 frames in the bottom row (because I need the keep the right frame static while users scroll the left frame. I can't use frames to structure the whole page (i.e. - having the title bar in a frame) because I need users to be able to go straight to web pages with specific URLs. I have also been
instrucetd to avoid frames by my tutor. I have tried the code below, but it hasn't worked.
Has anyone done this before? Is it possible???
Thanks for any help.
<table>
<tr>
<td> A title bar appears here </td>
</tr>
</table>
<table>
<tr>
<td>
<frameset cols="739,*" frameborder="NO" border="0" framespacing="0">
<frame src="custom_full_main.htm" name="customFullMain">
<frame src="custom_full_right.htm" name="customFullRight" scrolling="NO" noresize>
</frameset>
</td>
</tr>
</table>
I need to structure a page with tables, but want to include 2 frames in the bottom row (because I need the keep the right frame static while users scroll the left frame. I can't use frames to structure the whole page (i.e. - having the title bar in a frame) because I need users to be able to go straight to web pages with specific URLs. I have also been
instrucetd to avoid frames by my tutor. I have tried the code below, but it hasn't worked.
Has anyone done this before? Is it possible???
Thanks for any help.
<table>
<tr>
<td> A title bar appears here </td>
</tr>
</table>
<table>
<tr>
<td>
<frameset cols="739,*" frameborder="NO" border="0" framespacing="0">
<frame src="custom_full_main.htm" name="customFullMain">
<frame src="custom_full_right.htm" name="customFullRight" scrolling="NO" noresize>
</frameset>
</td>
</tr>
</table>