I have a literal tag which is passed a list of string. one of the string i wish to pass to it is an email.. i would like the email to be an hyperlink. this is what i have got so far,
tenancyManager.UserEmail = "a@b.c";
if (null != tenancyManager.UserEmail)
{
var emailAnchor = "<a href="+"mailto:"+tenancyManager.UserEmail+">"+ "</a>";
builder.Append(emailAnchor);
builder.Append("<br />");
}
this doesnt seem to work, can anyone help with my syntax? i have also tried
var email = string.Format("<a href={0}{1} Text={2}> </a>", "mailto:", tenancyManager.UserEmail, tenancyManager.UserEmail);

emailAnchorbeing set or returningnull? More information is always better... – Brian Feb 4 at 16:31String.Formatyou have more format items than you do parameters.. That'll throw an error. – Mike Christensen Feb 4 at 16:31