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 method is used to create database connection in servlets?

2 Answers  


What are the disadvantages of storing session state in cookies?

0 Answers  


Is servlet a framework?

0 Answers  


What is the use of servlet context?

0 Answers  


What is the difference between portlet and servlet?

0 Answers  






What is string tokenizer?

0 Answers  


What are some disadvantages of storing session state in cookies?

0 Answers  


What is the difference between sendredirect() and forward() in a servlet?

0 Answers  


Can we use the constructor, instead of init(), to initialize servlet?

0 Answers  


What is servlet lazy loading?

0 Answers  


If my browser does not support cookie, and my server sends a cookie instance what will happen?

0 Answers  


How are Sessions are more advantage than using of Cookies or URLReWriting?

2 Answers   CTS,


Categories