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 文本框:
<asp:textbox runat="server" id="myTxtBox"/>
每次数据库中的字段更改时,我都需要更新此文本框。(价格字段)数据库中的价格字段每秒都在更改。我知道我可以每秒轮询一次,但我不想这样做。一种选择是使用事件机制(但不确定如何通过它来实现)有更好的解决方案吗?
这取决于你的上下文。您可以选择以下技术列表:
使用 signalR(这里是教程链接)。这很容易。
自己构建COMET应用 .Net 技术