提醒警报如 google 中的 asp.net mvc
我需要向在线用户显示一条消息作为警报弹出窗口,就像谷歌日历中的提醒一样。
我们可以使用任何后台进程(例如Web服务/Windows服务)来实现它吗?
或者有什么可靠的方法可以做到吗?
I need to show a message to the online users as alert popup like reminders in google calendar.
Can we use any background process like web service/windows service to achieve it?
Or is there any reliable way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
许多向用户推送消息的应用程序现在使用略有不同的技术来执行向浏览器的推送。研究 comet 和其他保持浏览器连接打开的技术将向您展示如何有效地实现这些效果。
http://www.codeproject.com/KB/aspnet/CometAsync.aspx(这是关于该主题的代码项目的几篇好文章之一)。哈
a lot of these apps that push messages to users are now using slightly different techniques to perform these pushes to browser. Studying comet and other techniques for keeping connections open to the browser will show you how these effects are efficiently achieved.
http://www.codeproject.com/KB/aspnet/CometAsync.aspx (this is one of a few good articles on code project on the subject). hth
如果您正在谈论 StackOverflow 上的徽章警报之类的内容,您可以查看 Jeff Atwood 的关于创建这些“后台任务”的博客文章
ASP.NET 中的简单后台任务
If you're talking about something like the Badge alerts here on StackOverflow, you can check out the blog post from Jeff Atwood about creating those 'background tasks'
Easy Background Tasks in ASP.NET