The moose likes JSP and the fly likes Problem with http-equiv= Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "Problem with http-equiv="REFRESH"  meta tag" Watch "Problem with http-equiv="REFRESH"  meta tag" New topic
Author

Problem with http-equiv="REFRESH" meta tag

Eda Srinivasareddy
Greenhorn

Joined: Dec 05, 2002
Posts: 1
Hi
I am using
<meta http-equiv="REFRESH" CONTENT="<%=autoRefreshTime%>;URL=<%=params%>">
where
autorefresh=30,
params="marketdetails.ma?isAuto=yes&sortBy="+sortcolumn+"&isSort="+sortFlag+"&order_by="+orderby ;
sortcolumn=”ticker”,
sortFlag = “yes”
orderby=”asc”.

As far as the auto refresh is considered, it is working fine. But the problem with this is, whenever auto refresh is happening, the auto refresh page is becoming active i.e. If I am working on some other application say checking mails in outlook express, when auto refresh is happening, outlook is loosing the focus and auto refresh page is becoming active.
It is not happening in all the machines and we observed it only on some machines.
Thanks for your solution.
Thanks
Eda
Yuriy Fuksenko
Ranch Hand

Joined: Feb 02, 2001
Posts: 411
Have you tryed to use JavaScript:
<script>
setTimeout("window.location.reload()", <%=reloadTimeinMillisec%> ) ;
</script>
[ February 03, 2003: Message edited by: Yuriy Fuksenko ]
 
IntelliJ Java IDE
 
subject: Problem with http-equiv="REFRESH" meta tag
 
Threads others viewed
Timout a page - page made up of many iframes
meta refresh tag is not working
session Problem.
Refresh times to be one
getting blank lines in the downloaded file
MyEclipse, The Clear Choice