Saved Bookmarks
| 1. |
How do you implement the auto refresh in JSP? |
|
Answer» The simplest way of refreshing a Webpage is using method setIntHeader() of response object. Following is the signature of this method − public void setIntHeader(String header, int headerValue) This method sends back header "Refresh" to the browser along with an integer value which indicates time interval in seconds. |
|