Forum Moderators: open
The lower frame doesn't have any problem while loading but the upper
frame shows some wierd characters when it loads up.
I am controlling these two frames like this:
<HTML>
<HEAD>
<META NAME="GENERATOR" CONTENT="Adobe PageMill 3.0 Win">
<TITLE>Executive Summary</TITLE>
</HEAD>
<FRAMESET FRAMEBORDER=1 ROWS="175,*">
<FRAME MARGINHEIGHT="0" MARGINWIDTH="0" SCROLLING="NO" SRC="/cgi-bin/testing/test?page_name=menu_page>
<FRAME MARGINHEIGHT="0" MARGINWIDTH="0" SRC="/cgi-bin/testing/test?page_name=target_page>
<!--End_Links-->
<NOFRAMES>
Viewing this page requires a browser capable of displaying frames.
</NOFRAMES>
</FRAMESET>
</HTML>
Any clues??????
this is the page which is having problem while loading up...
At the top it has a form and when that loads up it messes all the character below that.
<HTML>
<HEAD>
<TITLE>Menu</TITLE>
</HEAD>
<BODY TOPMARGIN=0 BACKGROUND="/Test/bg.JPG" TEXT="#ffffff">
<FORM METHOD="POST" ACTION="/cgi-bin/pension/execsumm/execsumm" TARGET="_top">
<TABLE BORDER="1" CELLSPACING="0" CELLPADDING="0" BGCOLOR="#000080">
<TR VALIGN="CENTER">
<TD WIDTH="60" ALIGN="CENTER">
<IMG SRC="/Test/Banner.JPG" WIDTH="49" HEIGHT="13" BORDER="0">
</TD>
<!--Start_Options-->
<!--Start_Cover_Banner-->
<TD WIDTH="60" ALIGN="CENTER">
<IMG SRC="/Test/coverBanner.JPG" WIDTH="38" HEIGHT="13" BORDER="0"></TD>
<!--End_Cover_Banner-->
<!--Start_Letter_Banner-->
<TD WIDTH="60" ALIGN="CENTER">
<IMG SRC="/Test/letterBanner.JPG" WIDTH="42" HEIGHT="13" BORDER="0"></TD>
<!--End_Letter_Banner-->
</TR>
<TR>
<TD WIDTH="60" ALIGN="CENTER" VALIGN="TOP">
<INPUT TYPE="radio" VALUE="options" NAME="page_selected" CHECKED="1">
</TD>
<!--Start_Cover_Option-->
<TD WIDTH="60" ALIGN="CENTER" VALIGN="TOP">
<INPUT TYPE="radio" VALUE="cover" NAME="page_selected">
</TD>
<!--End_Cover_Option-->
<!--Start_Letter_Option-->
<TD WIDTH="60" ALIGN="CENTER" VALIGN="TOP">
<INPUT TYPE="radio" VALUE="letter" NAME="page_selected"></TD>
<!--End_Letter_Option-->
<!--End_Options-->
<TD WIDTH="67" ALIGN="CENTER" VALIGN="TOP">
<INPUT TYPE="hidden" NAME="page_name" VALUE="menu_frame">
<!--Hidden_Fields-->
<!--End_Fields-->
<INPUT NAME="submit" TYPE="submit" VALUE="Go"></TD>
</TR>
</TABLE></FORM>
</BODY>
</HTML>
You might consider a nested table for the FORM itself, inside one of the TD tags:
<td>
<form>
<table>form code</table>
</form>
</td>
Even better would be a totally separate Form table, with any other page elements in their own dedicated table.
Forms aren't new technology - I know you can get this to work.