I am a programmer, not an html guy. And as such, I am having some problems
getting jsps to work correctly with a frame set. Here is a sample of a web
page with the html I need
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html;CHARSET=iso-8859-1">
<META NAME="GENERATOR" Content="Visual Page 2.0 for Windows">
<TITLE></TITLE>
</HEAD>
<FRAMESET COLS = "100% " >
<FRAMESET ROWS = "60,99%,50 " BORDER="0" FRAMESPACING="0"
FRAMEBORDER="NO">
<FRAME SRC="header.html" NAME="Header" MARGINWIDTH="5" MARGINHEIGHT="5"
NORESIZE>
<FRAMESET COLS = "200,100% " >
<FRAME SRC="menu.html" NAME="Menu" SCROLLING="NO" MARGINWIDTH="3"
MARGINHEIGHT="10" NORESIZE>
<FRAME SRC="main.html" NAME="Data" MARGINWIDTH="5" MARGINHEIGHT="5"
RESIZE>
</FRAMESET>
<FRAME SRC="footer.html" NAME="Footer" MARGINWIDTH="5" MARGINHEIGHT="5"
RESIZE>
</FRAMESET>
</FRAMESET>
<NOFRAMES>
<BODY>
<P>
</BODY>
</NOFRAMES>
</HTML>
Right where it say
<FRAME SRC="main.html" NAME="Data" MARGINWIDTH="5" MARGINHEIGHT="5"
RESIZE>
I need to insert jsp stuff. Here is the jsp file that works. Now to
integrate. I basically want the login jsp to be centered in these frames
<center>
<form method="POST" action='j_security_check' >
<table border="0" cellspacing="5">
<tr>
<th align="right">Username:</th>
<td align="left"><input type="text" name="j_username"></td>
</tr>
<tr>
<th align="right">Password:</th>
<td align="left"><input type="password" name="j_password"></td>
</tr>
<tr>
<td colspan="2">
<center>
<p><input type="submit" value="Log In"> <input
type="reset">
</center>
</td>
</tr>
</table>
</form>
</center>
would someone help a poor java hack with html?
Chris
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>