refresh
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
You can't. There is no way that you can send a response from the server to the client without the client first sending a request. If you need the pages to update, you have to poll for changes from the client. One way is to simply reaload the page at a certain interval. Example that reloads the page every ten seconds: If you don't want to reload the page that way, you could use AJAX to ask the server if there are any changes, and reload when there are.
--- b { font-weight: normal; }