how to pass parameter from servlet to html form
Answers were Sorted based on User's Feedback
Answer / shymax
Either use beans ...or use session.setAttribute
("Yourpara",paravalue) in Servlet and ..get in HTML in
Scriplet as session.getAttribute("Yourpara");
Hope this solve the problem
Is This Answer Correct ? | 13 Yes | 4 No |
Answer / 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 |
Answer / amit ghosh
its simple... use request diapatcher
RequestDispatcher rd = request.getRequestDispatch("url?
newparam=newvalue");
rd.forward(request, response);
Is This Answer Correct ? | 9 Yes | 2 No |
Answer / sachin s
You can also use HtppSessio, create a new session variable
and set the value and get the same value in HTML. However
this should be avoided if you want to pass to many
parameters.
Also,remember that Session variable should be flushed off
after the use, thats a good practise.
Is This Answer Correct ? | 4 Yes | 3 No |
What is httpservlet class?
What methodology can be followed to store more number of objects in a remote server?
What exception should be thrown when servlet is not properly initialized?
Which are the different ways you can communicate between servlets?
How many ways are available to ger RequestDispatcher object?
Given the request path below, which are context path, servlet path and path info? /bookstore/education/index.html
what is a session object?
How can we achieve transport layer security for our web application?
How can the session in servlet can be destroyed?
how to pass parameter from servlet to html form
What is servlet and list its types?
when will cookie information destroy?