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
Tell us something about servletconfig interface.
What is the advantage of Servlets when compared with other server side technologies?
What are the different session tracking techniques?
Explain Action Servlet?
What are the annotations used in servlet 3?
If servlet receives multiple requests, how many objects will it create?
What is difference between PrintWriter and ServletOutputStream?
Why filter is used in servlet?
Why do we use sendredirect() method?
What is the difference in between the httpservlet and generic servlet?
What is the use of attribute in servlets?
What is servlet in tomcat?
Why HttpServlet class is declared abstract?
What are important features of Servlet 3?
How do I support both get and post from the same servlet?