How to prevent browser from caching the page content?
Answer / janet
Before sending the data to the browser,write the follwing code.
response.setHeader("Cache-Control","no-store");
response.setHeader("Pragma","no-cache");
response.setDateHeader("Expires",0);
| Is This Answer Correct ? | 4 Yes | 1 No |
What is the difference between Get and Post Method?
i need connection pooling code.....from harpreet.your@gmail.com
Explain the features are in servlet 3?
Is it possible to send a mail from a servlet? Explain?
What is the difference between a generic servlet and http servlet?
What if you need to span your transaction across multiple servlet invocations?
How will you pass values from HTML page to the servlet?
Why is init() method is used in servlets?
What is api in servlet?
Is tomcat a servlet container?
What is the use of attribute in servlets?
can i override service method