Cwisking
Cwisking

Reputation: 129

Asp.net Application wide event publishing

Is it possible to update another persons page from another page? ie what i am trying to do is... when a user updates a treeview with some data, i would like to broadcast the changes to any other user who is online and automatically update their treeview with the changes.

Is there some sort of pattern that i can have a look at to do this?

thanks yal...

Upvotes: 1

Views: 69

Answers (1)

mcintyre321
mcintyre321

Reputation: 13306

In realtime? You would want to use JS polling or COMET techniques.

Heres a solution using silverlight and WCF Duplex http://blog.developers.ba/post/2009/02/25/Silverlight-chat-application-using-WCF-full-duplex.aspx

This looks awlright too http://code.google.com/p/aspcomet/ Should work with a JS client (see http://www.cometd.com/)

Upvotes: 1

Related Questions