The HTML input tag type textarea represents this element in the source content.
<textarea name="property-name" cols="10" rows="3">Text goes here..</textarea>
The equivalent on the Struts platform is shown below.
<html:textarea name="form-bean-object-name" property="property-name" cols="10" rows="3"/>
|