Logo 
Search:

Java Answers

Ask Question   UnAnswered
Home » Forum » Java       RSS Feeds
  Question Asked By: Chisisi Massri   on Feb 03 In Java Category.

  
Question Answered By: Calais Bernard   on Feb 03

Instead of a META tag, you could use JavaScript to force a refresh.

In the HEAD section, you have:


<script type="text/javascript">
setTimeout ("oneSec ()", 1000);
var numSecs = 20;
function oneSec () {
numSecs--;
if (numSecs == 0) {
self.location.href = <This URL>;
} else {
setTimeout ("oneSec ()", 1000);
}
}
</script>

Share: 

 
 
Didn't find what you were looking for? Find more on refreshing jsp page Or get search suggestion and latest updates.


Tagged: