设置 Outlook 日历提醒
是否可以使用asp.net在outlook中创建日历提醒?
我正在使用 .NET 3.5 并拥有 MS Outlook 2003。
如果可以,如何实现?
Is it possible to use asp.net to create a calendar reminder in outlook?
I am using .NET 3.5 and have MS Outlook 2003.
If this is possible, how can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它只能在服务器计算机上安装的 Outlook 中创建日历提醒。它无法在 Outlook 中为正在使用您的应用程序的用户创建提醒,因为它在浏览器的沙箱中运行。
如果您想在服务器上创建约会,请查看此处:http://www .codeproject.com/KB/cs/outlookappointments.aspx
更新:
在明确您使用的是 Exchange 服务器后,您可以使用 EWS 托管 API 到 创建约会。我自己没有使用过,所以无法进一步帮助你。
It can only create a calendar reminder in the Outlook that is installed on the server machine. It can't create a reminder in the Outlook of the user that is using your application, because it runs in the sandbox of the browser.
If you want to create the appointment on the server, have a look here: http://www.codeproject.com/KB/cs/outlookappointments.aspx
Update:
After you clarified that you are using an Exchange server, you can use the EWS Managed API to create an Appointment. I haven't used it myself, so I can't help you any further.