1.

Can I Use Multiple Html Form Elements With The Same Name?

Answer»

YES. Define the element as an array and Struts will autopopulate it like any other. 
private STRING[] id= {};
public String[] getId() { RETURN this.id; }
public VOID setItem(String id[]) {this.id = id;}
And so forth

Yes. Define the element as an array and Struts will autopopulate it like any other. 
private String[] id= {};
public String[] getId() { return this.id; }
public void setItem(String id[]) {this.id = id;}
And so forth



Discussion

No Comment Found