I have an asp.net c# desktop application which constantly polls for the database data every 5 minutes. This results in lots of load on the server, which in turn reduces its efficiency.
is there any technology in asp.net that supports publish subscribe model independent of database used? I know long polling is one of the alternatives. But I was looking for something which is event driven rather than long poll the data. Any help would be appreciated.