how to pass parameter from servlet to html form

Answers were Sorted based on User's Feedback



how to pass parameter from servlet to html form..

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

how to pass parameter from servlet to html form..

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

how to pass parameter from servlet to html form..

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

how to pass parameter from servlet to html form..

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

Post New Answer

More Servlets Interview Questions

What is httpservlet class?

0 Answers  


What methodology can be followed to store more number of objects in a remote server?

0 Answers  


What exception should be thrown when servlet is not properly initialized?

0 Answers  


Which are the different ways you can communicate between servlets?

0 Answers  


How many ways are available to ger RequestDispatcher object?

4 Answers   Polaris,


Given the request path below, which are context path, servlet path and path info? /bookstore/education/index.html

1 Answers  


what is a session object?

2 Answers  


How can we achieve transport layer security for our web application?

0 Answers  


How can the session in servlet can be destroyed?

0 Answers  


how to pass parameter from servlet to html form

4 Answers  


What is servlet and list its types?

0 Answers  


when will cookie information destroy?

7 Answers  


Categories