Hi,
I have the following requirement to be done using JSP/Servlets.
I need to show a report where the header is static and if I scroll,
only the data rows will scroll and not the header. So I can see the
header for the rows which is in the end of that page.
For e.g.
My report should show Name, E#, Age, Position, then it will be as
follows
Name E# Age Position
********************************************************
ABC 1 25 XYZ
ABC1 2 25 XYZ2
ABC 1 25 XYZ
ABC1 2 25 XYZ2
ABC 1 25 XYZ
ABC1 2 25 XYZ2
ABC 1 25 XYZ
ABC1 2 25 XYZ2
ABC 1 25 XYZ
ABC1 2 25 XYZ2
So in the above I will have 'n' number of records. But when I scroll
down to see the 'n'th record, the header should not disappear. It
should be shown till I scroll to the end of rows.
How can we do this in JSP?
Thanks,
Suby
Larry - 08 May 2006 20:49 GMT
Take a look at HTML's <iframe> tag (internal frame).