Hello,
The title is self explanatory I guess.
How can I develop a C# application to open a page in a web browser, given the URL, and refresh it continuously (always the same URL).
Thanks!
Hello,
The title is self explanatory I guess.
How can I develop a C# application to open a page in a web browser, given the URL, and refresh it continuously (always the same URL).
Thanks!
Make a javascript function that polls the url (e.g. via window.setTimeout()
).
(Either using AJAX for partially updating the content, or setting window.location.href
, etc..)