How to referesh ASP page using timer control

  • Thread starter Thread starter kai
  • Start date Start date
K

kai

Hi,
I try to referesh my asp.net 2.0 page every minite using timer control,
but cannot find code for refresh. Please help?

Thanks

Kai
 
refresh, as in refresh the page that's in the browser? or cache the
page on the server, and refresh the cache every minute?

if the former, you have to do this on the client. it won't work in all
cases - if user disables javascript for example.

method 1: check out the HTTP Meta Refresh tag

method 2. checkout the javascript setTimeout() function

method 3: use a java applet

method 4: use a flash control

cheers

neil
 
Thanks

Kai
refresh, as in refresh the page that's in the browser? or cache the
page on the server, and refresh the cache every minute?

if the former, you have to do this on the client. it won't work in all
cases - if user disables javascript for example.

method 1: check out the HTTP Meta Refresh tag

method 2. checkout the javascript setTimeout() function

method 3: use a java applet

method 4: use a flash control

cheers

neil
 
It works !!!

Thanks

Kai
refresh, as in refresh the page that's in the browser? or cache the
page on the server, and refresh the cache every minute?

if the former, you have to do this on the client. it won't work in all
cases - if user disables javascript for example.

method 1: check out the HTTP Meta Refresh tag

method 2. checkout the javascript setTimeout() function

method 3: use a java applet

method 4: use a flash control

cheers

neil
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top