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
How do you deal property files in servlet?
What is servletconfig?
How do you define a servlet?
Which exception is thrown if the servlet is not initialized properly?
Why is a constructor needed in a servlet even if we use the init method?
What is the process to implement doget and dopost methods?
Why do you use session tracking in httpservlet?
Explain jsessionid?
What is the difference between servlet and jsp?
What do you mean by cgi and what are its drawbacks?
What is ServletContext object?
What is servlet in web technology?
What is the functionality of actionservlet and requestprocessor?
What if you need to span your transaction across multiple servlet invocations?
What is the life-cycle of servlets?