Now how do I save the values of the input elements here In my case i have two text boxes with the same name how do I display the values entered in this form once again as a table. Help me please I am novice programmer..
Hi, in Jsp receive the parameters using getParameter() method and design the same form as in HTML.to the value attribute assign the value returned by getparameter(). thanks
How will I save the value of... for eg nlocsc I have two textboxes(nlocsc) one for graduate and for college They are going to be two diffeerent values but the name of the box is nlocsc. How should I go about displaying the data? How should I write my bean then?
You can call the fields in a form anything you like. The name is only used by the form and the servlet which parses it. Why not call the college one "college_nlocsc" and the other one "graduate_nlocsc" ?