Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP hyperlink question 1

Status
Not open for further replies.

vlree

IS-IT--Management
Jan 16, 2004
31
US
I have this on an asp page

<td class="normal" width="80%" align="left"><%=rsDisplay.Fields("Email").Value %></td>

As you can see, Email Value that is returned to the page as text.
How can I format this asp return as a mailto: hyperlink instead of text?
I hope that is clear.

I am learning asp, thank you for your time.
 
Check This out


buffalo.gif height="65" width="35"

 
Try this:

<a href="mailto:<%=(rsDisplay.Fields("Email").Value)%>">
Send Mail</a>

Hope this helps!

Michelle


 
[highlight orange]Anytime[/highlight] [thumbsup2]


buffalo.gif

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top