Link to home
Start Free TrialLog in
Avatar of tittu
tittu

asked on

Jsp Page Auto Refresh

How to implement the Page Auto Refresh in  Jsp
Avatar of cmalakar
cmalakar
Flag of India image

Many ways..

One way is to use

<meta http-equiv=refresh content="X; URL=/YourUrl/index.html">

Replace X with an integer representing the number of seconds before the refres
ASKER CERTIFIED SOLUTION
Avatar of cmalakar
cmalakar
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Check this question where we have a complete solution to the auto-refresh problem.

https://www.experts-exchange.com/questions/25357496/Refresh-my-page.html
Avatar of enggagrawal
enggagrawal

html tag
<meta http-equiv="refresh"  content="5" > 
Avatar of tittu

ASKER

it is working.