Hi

I have array of text boxes with the same name
eg:
<tr>
<td>
<html:text  propertye=name/>
<html:text  propertye=name/>
<html:text  propertye=name/>
</td>
</tr>

When I sbimit the page all the values are stored in an String Array in my Form bean. 

private String [] name=null;
public String[] getName(){
    return this.name;
  }

  public void setName(String[]  name){
    this.name = name;
  }

I am not able to  repopulate the textboxes with values I entered when the page is 
reloaded again?

Reply via email to