Reputation: 11
I have jsp page which loads data from ArrayList
passed by the corresponding servlet. i have response.setIntheader("Refresh",60)
which is suppose to refresh my jsp page after every 60 seconds
. but this does not happen. it shows a blank page with servlet url in the browser.
Upvotes: 0
Views: 890
Reputation: 31
Upvotes: 1
Reputation:
If you want to refresh your jsp completely, you may try this in your jsp itself:
<meta http-equiv="refresh" content="60"/><!-- content is in seconds -->
Upvotes: 0