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 servlet name in web xml?
How can we achieve transport layer security for our web application?
how many jsp scripting elements are there and what are those?
Can filter be used as request or response?
What are the supporting protocol by HttpServlet ?
How are filters?
Explain the concept of ssi ?
How will you pass values from HTML page to the servlet?
What are the different ways we can maintain state between requests?
Write a program to show the functionality of doget and dopost method?
What do you mean by interservlet communication?
What is pure servlet?
What is servlet container. how it works?
Which method of the httpservletrequest object is used?
What are some disadvantages of storing session state in cookies?