2

I am trying to fix this problem but I have some doubt. How to use this tag?

<meta http-equiv="Keep-Alive:timeout=600" content="600" />

or

<meta http-equiv="connection:Keep-Alive" content="600" />
dan
  • 3,439
  • 17
  • 54
  • 82
Jaini Naveen
  • 155
  • 1
  • 17
  • What do you want to achieve with this? AFAIK there is no "keep alive" meta tag. Maybe you want `http-equiv="refresh"`? – f_puras Oct 01 '12 at 12:59

1 Answers1

1

A keep-alive signal can't be sent with pure HTML; this is a server setting. Please take a look here: How can I enable keep-alive?

What you can do with HTML meta-tags is more about the browser cache. If you want to refresh the page every 600 seconds, the http-equiv="refresh" could get the job done (but here again, there are some more robust solutions server-side). It really depends on what you are actually trying to do; with some more details, we would surely be able to help you further.

Community
  • 1
  • 1
dan
  • 3,439
  • 17
  • 54
  • 82