Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要一个 ASP.NET 应用程序打开 Outlook,收件人不发送邮件。仅与收件人一起打开 Outlook。
我想为其他应用程序测试它,在我的测试中,我使用带有收件人文本和按钮 openOutlook 的文本框。
我怎么能做到这一点?
假设 Outlook 是默认安装的电子邮件客户端,您可以在锚标记中使用 mailto 前缀:
<a href="mailto:user@example.com">Send email to user@example.com</a>
否则,您的选择可能会受到限制,因为您的 Web 服务器无法在客户端计算机上打开特定应用程序。您可能必须开发一个 ActiveX 或 Java 小程序,但这确实是大材小用。