使用 ASP.NET 4.0 在客户端之间发送数据
请帮我想出解决办法。
我正在将 Lotus Note 应用程序转换为 ASP.NET。
在lotus note中,我们可以将员工的申请(数据)传递给他/她的经理审批。 员工还可以检查他/她的数据状态,无论经理是否打开、批准。
这个过程可以实时完成。我的意思是,在员工屏幕上,他/她将看到发送的数据的状态正在发生变化 -->经理正在开幕 -->经理接受或经理拒绝。
同时,如果其他员工尝试跟踪此应用程序(数据),他们将看到与第一个员工相同的屏幕。
现在,在 asp.net 中,我正在考虑将数据从员工直接发送给经理。我不希望管理器的网络浏览器需要每 xx 毫秒进行一次轮询。我不太确定它是否可以在 ASP.NET 中完成,因为我不是 WEB 人员。
经过一段时间的研究后,我发现彗星可能会帮助我,但这似乎很难。我不知道它是否适合我的问题,或者有人可能会指导我对此有更好的想法。
简而言之,我应该使用哪种解决方案来解决这个问题来实现我的目标?
对不起我的英语
谢谢
Please help me think of solution here.
I'm transforming lotus note application to ASP.NET.
In lotus note, we can pass the application(data) from staff to his/her manager for approval.
The staff can also check status of his/her data whether the manager is opening it, approved it or not.
This process can be done in real time. I mean on the staff screen he/she will see status is changing from data sent --> manager is opening --> manager accepted or manager rejected it.
In the same time, if other staffs try to track this application(data) they will see the same screen with the first staff.
Now, in asp.net, i'm thinking of sending data from staff to manager directly. I don't want manager's web browser need to do polling for every xx millisecond. I'm not quite too sure it can be done or not in asp.net because i'm not the WEB guy.
After doing a research for a while, i found that comet may help me on that but it seems pretty hard. And I don't know it is suitable for my problem or not or someone may guide me a better idea on this.
In short, Which solution i should use with this problem to achieve my goal?
Sorry for my English
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在通过 XMPP 进行实时通信。有一个名为 jabber.net 的项目,您可以使用它在后台创建自定义 jabberclients 。它非常容易实现、可靠且快速。就我而言,用户甚至不知道他实际上正在后台聊天。信息显示在标准网络控件中。消息是自动创建的。
I'm doing Realtime-Communication via XMPP. There is a project called jabber.net with which you can create custom jabberclients in the background. It's pretty easy to implement, reliable and fast. In my case the user doesn't even know that he's actually chatting in the background. As the Information are shown in standard web-controls. Messages are created automatically.