Im developing a Issue Tracker Application in struts,I have one link 'view issue' which displays all the issues as a report, for each record one update link will be there, if we click on update link it has to go to that
particular record page with details from the database.
<% while(rs.next())
{
String issue_id=rs.getString(1);
String desc=rs.getString(2);
String assign=rs.getString(3);
%>
<tr><td><%=issue_id%></td><td><%=date%></td><td><%=desc%></td>
<td><a href="update_issue.jsp?id=<%=issue_id%>">Update</a></td></tr>
Here when I click on the update link its saying "The requested resource (/update_issue.jsp) is not available". How can I display the other form with that particular record details.
and one more query is how can I display the selected value from the database into the combo box in jsp page.
Thanks inadvance.