I am sendig the email to client on button click.
I am sending link with code
mm.Body =
"Thanks for the Registration. To acctivate your account Please visit the link http://localhost:49509/point/activate.aspx?code= "+ lblcode.Text + "."
Try this
Dim link As String = "http://localhost:49509/point/activate.aspx?code=" & lblcode.Text mm.IsBodyHtml = True mm.Body = "Thanks for the Registration. To acctivate your account Please visit the link <a href = '" & link & "'>" & link & "</a>"
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.