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
What do you mean by web applications? Explain web application directory arrangement?
How to commuincate between an applet and a servlet?
What is a servlet engine?
What is cgi?
How to read request headers from servlets?
How will you pass values from HTML page to the servlet?
What is ServletContext object?
Is servlet synchronized?
Define context initialization parameters.
How to get the actual path of servlet in server?
Why session tracking is needed?
What is the difference between sendredirect() and forward() in a servlet?
What is servlet in web technology?
hi actully i hav form columns with origin and destination names .as like as i need to create one more column with name amount. my requirement is when i select origin and destination columns automatically i need to get amount from database.how can i. please tel me with relative code
How servlet is created?