Im trying to open the email client after a user accepts a disclaimer in a popup box whenever they click email someone. It works on local but will not work on live.
public void btnEmail_click(object sender, EventArgs e)
{
Process.Start("mailto:blah@blah.com");
}
I realize now this will not work correctly obviously. Is there a way to do what im looking for with javascript?