T
Thom Little
The following handler when clicked will invoke the e-mail client.
Unfortunately, after the e-mail is sent a blank page is displayed on the
browser.
What is the technique for displaying the e-mail client and when the e-mail
is sent control is returned to the invoking webpage? What was your source
for the information?
private void btnComments_Click(object sender, System.EventArgs e)
{
Response.Redirect( "mailto:Thom Little <[email protected]>" );
}
(Yes this is the codebehind equivbelent of a simple <a href="mailto...)
Unfortunately, after the e-mail is sent a blank page is displayed on the
browser.
What is the technique for displaying the e-mail client and when the e-mail
is sent control is returned to the invoking webpage? What was your source
for the information?
private void btnComments_Click(object sender, System.EventArgs e)
{
Response.Redirect( "mailto:Thom Little <[email protected]>" );
}
(Yes this is the codebehind equivbelent of a simple <a href="mailto...)