Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. while (rs.next())
  2. {
  3.  
  4. out.println("<option>"+rs.getString(2)+"</option>");
  5.  
  6. if(rs.getString(2).equalsIgnoreCase(proyecto)){
  7. out.println("<option selected>"+rs.getString(2)+"</option>");
  8.  
  9. }
  10. }
  11.  
  12. out.println("</select>");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement