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" />
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.