I would recommend you get a servlet book if you do not know this. This is in just every servlet book. ------------------ In Gates we trust. Yeah right....
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning."
Malu Sivasankar
Greenhorn
Joined: Aug 02, 2000
Posts: 14
posted
0
Hidden form fields are fields added to an HTML form that are not displayed in the client's browser. You can include hidden form fields with HTML like this: INPUT TYPE=HIDDEN NAME ="ORDERNO" VALUE = "1000" These fields are sent back to the server when the form that contains them is submitted. The disadvantage with this type of technique is that it works only for a sequence of dynamically generated forms.
Tony Alicea
Desperado
Sheriff
Joined: Jan 30, 2000
Posts: 3215
posted
0
Even if the FORMs are not generated dynamically, the hidden fields can be: <INPUT TYPE="HIDDEN" NAME="ORDER_NO" VALUE="<%= myObject.getOrderNumber() %>">
Tony Alicea Senior Java Web Application Developer, SCPJ2, SCWCD
Raghav Mathur
Ranch Hand
Joined: Jan 12, 2001
Posts: 639
posted
0
that's easy :-- <input type = "hidden" name="go" value=" what everyou wanna put here"> recieve this in another jsp page by using :-- <% String get = request.getParameter("go"); %> <%= get %>