I have a .net web page which displays a list of objects. I also have a WCF service which allows clients to submit new objects. This is all glued together via SQL Server.
My question is: I would like to have the page update asynchronously when a new object is inserted via the service. Can you suggest a best practice for doing this? I would like to avoid polling the database, and the service and page don't seem to share a Cache.
Thanks!