Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Adjusting the size of the frames in JSP

843836Jan 5 2005 — edited Jan 5 2005
Hi guys. i wanted to split the page into 4 parts. header, left, right, footer frames.

I couldn't adjust the width of the right frames.. Wondering how i should do it.. hopefully someone can help me with this. Thanks alot.

<HTML>
<HEAD>

<TITLE>Some Title</TITLE>
</HEAD>

<FRAMESET COLS="870,28*" frameborder="no" BORDER="0" NORESIZE>
<FRAMESET ROWS="80,69*,21">

<FRAME SRC="header.jsp" NAME="header" SCROLLING="no" MARGINHEIGHT="0" MARGINWIDTH="0" NORESIZE>

<FRAMESET COLS="370,*">
<FRAME SRC="a.jsp" NAME="left" SCROLLING="auto" MARGINHEIGHT="0" MARGINWIDTH="0" NORESIZE>
<FRAME SRC="Main.jsp" NAME="body" SCROLLING="auto" MARGINHEIGHT="0" MARGINWIDTH="0" NORESIZE>
</FRAMESET>

<FRAME SRC="footer.jsp" NAME="footer" SCROLLING="no" MARGINHEIGHT="0" MARGINWIDTH="0" NORESIZE>
</FRAMESET>

<NOFRAMES>
<BODY>
</BODY>
</NOFRAMES>
</FRAMESET>
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 2 2005
Added on Jan 5 2005
2 comments
446 views