Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How do I prevent the output of my JSP or Servlet pages from being cached by the browser?
How do I prevent the output of my JSP or Servlet pages from being cached by the browser?
✍: Guest
You will need to set the appropriate HTTP header attributes to prevent the dynamic content output by the JSP page from being cached by the browser. Just execute the following scriptlet at the beginning of your JSP pages to prevent them from being cached at the browser. You need both the statements to take care of some of the older browser versions.
2013-07-23, 2056👍, 0💬
Popular Posts:
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...
In which event are the controls fully loaded ? Page_load event guarantees that all controls are full...
How can I execute a PHP script using command line? Just run the PHP CLI (Command Line Interface) pro...
What is the concept of XPOINTER? XPOINTER is used to locate data within XML document. XPOINTER can p...
.NET INTERVIEW QUESTIONS - How can you avoid deadlock in threading? A good and careful planning can ...