How do you pass the data from one servlet to another
servlet?
Answer Posted / abilash
also we can set data in the request too
request.setAttribute("variableName"object);
we can get the value in the next servlet by
Object obj = request.getAttribute("variableName");
Is This Answer Correct ? | 24 Yes | 18 No |
Post New Answer View All Answers
Explain the jar and war files in servlet?
Tell the new features added in servletrequest interface i.e. Servlet 2.4
Why are servlets used?
If my browser does not support cookie, and my server sends a cookie instance what will happen?
How a servlet is unloaded?
Describe servlet?
What are the types of servlets? Explain
How the typical servlet code look like ?
What are the common methods that are included in the http servlet class?
What is servlet initializer?
What is ServletConfig object?
Explain the concept of ssi ?
What is the
What is meant by Servlet? What are the parameters of service method?
What do you mean by annotations in servlet?