views:

99

answers:

1

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!

+2  A: 

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..)

andras
...or just use meta refresh: http://en.wikipedia.org/wiki/Meta_refresh
andras