Hello All,
Here is mytable and need the headers to remain while there is a scrollbar only to the results and provide the sorting facility in the name.
<table>
<tr>
<td>id</td>
<td>name</td>
<td>type</td>
</tr>
<%
while(resultSet.next())
{
%>
<tr>
<td><%=resultSet.getString(1)%></td>
<td><%=resultSet.getString(2)%></td>
<td><%=resultSet.getString(3)%></td>
</tr>
<%
}
%>
</table>
for the scrollbar, i tried to use div but, it showed blank space.
How can I do these two things?