auto-refreshing a page

  • Thread starter Thread starter MattB
  • Start date Start date
M

MattB

I have a page I've migrated from HTML to asp.net that would auto-refresh
every 30 seconds. I did this by putting the following in the <head> section:
<meta name="refresh" content="30">

But now that it's an aspx page it doesn't seem to refresh anymore. Is
there an asp.net equivalent to this or some kind of adjustment I need to
do to make it work? Thanks!

Matt
 
ASP.NET should not disable this. This is a function of the browser, not the
server so as long as the <meta> tag is in the output it should work. View
the source for the page and see if it is actually in the output.
 
Matt,

Try <meta http-equiv="refresh" content="30">
I'm not sure if it makes any difference though.

Eliyahu
 

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