You can't do this because ASP.NET is running on the server. You can't tell the client to do something with anything other than HTML and JavaScript.
You could do a Response.Redirect to the mailto address which would cause the browser to launch the client's email client:
Response.Redirect("mailto:
[email protected]")