• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

jsp

 
Ranch Hand
Posts: 149
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am retrieving EMAIL column data from oracle table.
contents are xyz@hotmail.com. when I am displaying on the browser I want to make HREF, when I clikc on that it should display mail screen.
I am retrivening data like this
<TR><TD><%= rs.getString("FULL_NAME") %>
</TD><TD><%= rs.getString("TITLE") %>
</TD><TD><%= rs.getString("LOCATION") %>
</TD><TD><%= rs.getString("VNET") %>
</TD><TD><%= rs.getString("EMAIL") %>
</TD><TD><%= rs.getString("PAGER_PIN") %>
</TD></TR><BR>
Pl help anyone
 
Ranch Hand
Posts: 58
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
well try following...
<a href="mailto:<%= rs.getString("EMAIL")"><%= rs.getString("EMAIL")</a>
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic