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 |
Define servlet mapping?
What are the steps involved in placing a servlet within a package?
What type of protocols are used in HttpServlet?
What do you mean by session tracking?
When servlet object is created?
What is meant by cookies?
How to get the IP address of client in servlet?
What is Servlet API used for connecting database?
Name the different ways of session tracking.
What is difference between jsp and servlet?
What are the types of Session Tracking ?
Explain life cycle of a Servlet?