How do these values relate to your form? If they are properties of your form then you can get rid of the bean:define lines and just use this:
<html:hidden property="price" />
- Brent
swenling wen
Ranch Hand
Joined: Jun 07, 2006
Posts: 32
posted
0
I want to get a value from bean and then relate to my form. How to solve it? such as: <bean efine id="id" name="products" property="productId" type="java.lang.String"/> ---this get a value from a bean <html:hidden property="productId" value="<%=id%>" write="true"/> ---put this value to my form <html:hidden> Right???do like this.