First off, my experience is primarily with windows apps, so I appologize for the simplicity of this.
This is using v1.1 of the framework:
I've added a button to a aspx page that generates a new email - contents, who it's going to etc. info generated in code.
The entire value of the link is in a string called MailString
I've confirmed the email is opened on the client machine etc. via
The problem is this is obviously not quite what I want -- this clears the page in the browser. I want to leave the user on the page and just open the new mail message.
Any suggestions?
This is using v1.1 of the framework:
I've added a button to a aspx page that generates a new email - contents, who it's going to etc. info generated in code.
The entire value of the link is in a string called MailString
I've confirmed the email is opened on the client machine etc. via
Code:
Response.Redirect(MailString);
The problem is this is obviously not quite what I want -- this clears the page in the browser. I want to leave the user on the page and just open the new mail message.
Any suggestions?