Click here to Skip to main content
15,891,763 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
is it possible to create a real time application using vb.net?
I mean the application has some data and if there is any changes in the DB in the server the data should be updated immediately in the application.
is there anyway of doing it?
Also Is it possible to use AJAX in VB.Net?
Posted

1 solution

Sure. Google for SQL Server Notifications (pre SQL Server 2008 R2) or SQL Server StreamInsight.

Using Ajax to do this wouldn't be efficient because Ajax cannot sit there and listen for notifications. It has to poll the server for any changes. This increases the load on the server as the number of clients increases.

You could use SignalR to do this though. Google for that too.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 20-Jun-15 21:48pm    
5ed (very basic and short though, but a reasonable inquirer would get a right idea on what to look for).
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900