JSP Tips---Prevent browsers from fetching Web pages

Source: Internet
Author: User

To speed up the user's browsing speed, the browser often will browse the Web page quickly to the hard disk, the next time to browse the same page, then go to the hard drive to find, but now the Web page is often dynamic, in order to avoid users caught in the hard drive expired data, JSP can be used to prevent the browser to quickly access the Web page, This method guarantees that the user will always be able to see the latest information on the Web page.

1.JSP syntax
<%
Response.setheader ("Pragma", "No-cache");
Response.setheader ("Cache-control", "No-cache");
Response.setdateheader ("Expires", 0);
%>

2. You can also use the following HTML syntax, available on static web pages
<meta http-equiv= "Pragma" content= "No-cache" >
<meta http-equiv= "Cache-control" content= "No-cache" >
<meta http-equiv= "Expires" content= "0" >
Note that these HTML syntax is to be under the  

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.