Hello All,
I am having difficultied while getting the values into a table format:
The previous format was:
<table border="1" width="84%" align="center" bgcolor=#66CCFF bordercolor=#000000 height="137">
<tr>
<td colspan="2" height="33">
<p align="center">
<span style="font-size: 8pt; font-weight:700">Name</span></td>
<td height="33">
<span style="font-size: 8pt; font-weight:700">Add Name</span></td>
Now the new format is that I am getting the data :
<ul class="paging">
<%
while(rs.next()){
%>
<li><%=rs.getString("Name")%></li>
<%
}
rs.close();
%>
</ul>
<ul class="paging">
<%
while(rs.next()){
%>
<li><%=rs.getString("add")%></li>
<%
}
rs.close();
%>
</ul>
So, can you please help to adjust the table format and make it as the first example. I tried to put the whole thing in <td>
, but the whole data became in one column along the page. The problem is that I would like to include the <ul> <li>
in the table <TD>
column.
So, the first column is having the name with the <ul>
and next to it is the Add with the <ul>
and selection.
Thanx for help