Display Form in a different section?

liunx

Guest
I have a page (JSP), top portion of the page contains an Table and i have around 5 Rows, when the user clicks any of the rows <br />
i need to display the corresponding information in the bottom portion of the SAME page, As i don't want to take the user to another page, <br />
Kindly let me know how to do this, If you any code that would be appreciated <br />
<br />
Thanks <br />
GG<!--content-->I don't know how you'd do this with jsp but with normal HTML you could just use iframes.<br />
<br />
To create a frame do this:<br />
<br />
<iframe frameborder="0" marginheight="0" marginwidth="0" name="frame1" noresize="true" scrolling="true" src=http://www.webdeveloper.com/forum/archive/index.php/"http://www.w3.org/">Text that appears if frames don't work.</iframe><br />
<br />
and to go to a different page in that frame do this:<br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.geocities.com/caulolli/">New Page</a><!--content-->Originally posted by lavalamp <br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.geocities.com/caulolli/">New Page</a> <br />
<br />
Isn't there a target attribute missing there?<!--content-->Duh ... :(<br />
<br />
Sorry about that, there should be a target="frame1" in there.<!--content-->
 
Back
Top