如何启动Outlook电子邮件窗口(类似于超链接中的mailto :)?
这需要在LinkButton
click事件中完成。
最佳答案
考虑到mailto功能是需要在客户端发生的功能。您将需要使用javascript来做到这一点。根据您希望邮件发送的时间,您有两种选择。
如果您希望它在单击LinkButton时立即发生,则只需将其添加到LinkButton
的OnClientClick
事件中:
<asp:LinkButton runat="server" ID="btnEmail" Text="Send Email"
OnClientClick="window.open('mailto:[email protected]','email');">
</asp:LinkButton>
如果您希望它在服务器端代码运行后发生,那么您将需要在新页面启动时连接要运行的javascript事件:
// At the end of your LinkButton server side OnClick event add the following code:
ClientScript.RegisterStartupScript(this.GetType(), "FormLoading",
"window.open('mailto:[email protected]','email');", true);
希望能有所帮助。
关于c# - 如何在LinkButton单击事件上启动电子邮件客户端?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2804384/