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
What is the life-cycle of servlets?
How can we create deadlock situation in servlet?
How to find whether a parameter exists in the request object?
What is the directory structure of web application?
What are the types of Session Tracking ?
Whats the advantages using servlets over using CGI?
What are different Authentication options available in Servlets.
Why do we need a constructor in a servlet if we use the init method?
If my browser does not support cookie, and my server sends a cookie instance what will happen?
Write a simple servlet program to print the contents of html.
How to get the IP address of client in servlet?
Which method of the httpservletrequest object is used?
How to rectify errors in java servlet while compilation?
What do you mean by interservlet communication?
What are the life-cycle methods for a servlet?