J
Joriz
I have an image button that when click executes this
Private Sub btnContact_Click(ByVal sender As System.Object, ByVal e As
System.Web.UI.ImageClickEventArgs) Handles btnContact.Click
Response.Redirect("mailto:" & lnkContactEmail.Text)
End Sub
I know this is not the way to do it. This one redirects me to another
page and then opens up the email client. Is there anyway i can just
execute the "mailto" just like when doing an <a href="mailto"...> but
in code-behind.
Thank you very much.
Private Sub btnContact_Click(ByVal sender As System.Object, ByVal e As
System.Web.UI.ImageClickEventArgs) Handles btnContact.Click
Response.Redirect("mailto:" & lnkContactEmail.Text)
End Sub
I know this is not the way to do it. This one redirects me to another
page and then opens up the email client. Is there anyway i can just
execute the "mailto" just like when doing an <a href="mailto"...> but
in code-behind.
Thank you very much.