Answer Posted / haneef
By the Hidden form fields..
we can set the name and values here
<input type="hidden" name="uName" value="xxx" />
this way, u can send u r parameters to html
(or) by cookies
Cookie c1=new Cookie("uName","xxx");
response.addCookie(c1);
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
Is java servlet still used?
Explain the architechure of a servlet?
What is servlet interface?
What are the difference between session and cookies in servlet? Explain
How can an existing session be invalidated?
What are the functions of an intercepting filter?
What is the difference between the getrequestdispatcher(string path) method of javax.servlet.servletrequest interface and javax.servlet.servletcontext interface?
What is servlet collaboration?
Define the servlet mapping.
What are common tasks performed by Servlet Container?
What is difference between jsp and servlet?
What are different Authentication options available in Servlets.
What exception should be thrown when servlet is not properly initialized?
Which interface must be implemented by all servlets?
What is a servlet engine?