I have a multiuser application, I need to refresh an Update panel when one of users change the state of an application variable to true.
What is the best way to do this?
I've tried with a timer, but on timer tick all page was postback.
Thanks
-------EDIT--------
Thanks for suggestions, I would try to explain better my problem.
I have a big database, shown in a bound gridview. Most users only read data, but someone can edit. Is very important that the changes appears immediately to all users that are seeing the GridView. The best solution that I found is to define an application variable and users that are editing set this variable to true. All other users update GridView only if the application variable is true, else they do nothing.
Is that a good solution?
What is the better way to update the GridView when the application variable change its state?