Pushing data from SQL Server to Web Application with SignalR

后端 未结 2 1472
挽巷
挽巷 2020-12-25 08:59

My ASP.NET MVC 4 Web application is displaying frequently updated data to the client. Data originate from an external source (an application installed on the server) and pro

2条回答
  •  悲&欢浪女
    2020-12-25 09:15

    Have you looked at SignalR? You can use it to asynchronously push data to your UI (although it isn't a true push). This may not be acceptable for your specific situation, but I would suggest taking a look. Might be what you need. Hope that helps.

提交回复
热议问题