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 |
How to read request headers from servlets?
What is the requirement of servlet config and servlet context implemented and how are they implemented?
What is Server-Side Includes?
Why doesn’t a servlet include main()?
Explain the role of dispatcherservlet and contextloaderlistener.
Whether we can get deadlock situation in servlets?
What is a servlet-to-servlet communcation?
program for RequestDispatcher in servlets?
In the servlets, we are having a web page that is invoking servlets ,username and password? which is checks in database? Suppose the second page also if we want to verify
How do we go with database connection and log4j integration in servlet?
What is ServletContext() and what is its use?
9 Answers Prime Technology, TCS,
What is the advantage of Servlets when compared with other server side technologies?