View Single Post
Join Date: Sep 2008
Posts: 21
Reputation: dreamer14 is an unknown quantity at this point 
Solved Threads: 1
dreamer14 dreamer14 is offline Offline
Newbie Poster

Re: Create Dynamic Hyperlink

 
0
  #8
Jan 19th, 2009
  1. while (rs.next()) {
  2. String abc=rs.getString("YourVariableInContactDatabase");
  3. out.print("<a href=\"viewdata.jsp?value1="+abc+"\">"+abc+"</a>");
  4. }
Is this wat u mean?
Reply With Quote