i am working on a project. i have database and it has 20 coloumns for each row. i display rows in form of table. in table i am retrieving data from database and displaying it.
<% While(special.next()){ %>
<ul class="features">
<li><%= special.getString("company")%></li>
<li><%= special.getString("catagory")%></li>
<li><%= special.getString("place")%></li>
<li><%= special.getString("verified")%></li>
<li><%= special.getString("phone")%></li>
<li><%= special.getString("description")%></li>
</ul>
<div class="footer">
<a href="new.jsp">more details</a>
</div>
<% } %>
when i click on 'more details' it should go to new.jsp where it can display more detials about that particular company. for that i need to send 'id' of that particular row to see more details of that particular row. how do i sent id of that particular row to new jsp where i can retrive full detials and display it in new.jsp page?? or am i doing it wrong? my main problem is when i click on 'more detials' all detials of that row should come go to next page how do i do it???