[quoted text, click to view] Chandra wrote:
> Hi
> You can try it this way
> <a href="<%= mailAddress%>"><%= name%></a>
>
> this will create anchor tag that will force the Outlook to popup when
> clicked on the link
> --
More properly, you should have:
<a href="mailto:<%= mailAddress %>"><%= name %></a>
Which *may* open Outlook, or may open another email program. It depends
on what they have configured into their browser as their default email
program.
HTH,
Damien