Dear peeps,
I am designing an application.
In
jsp,
I have checkboxes with same name.
Let's say I have 5 checkboxes in a jsp.
And I have checked second and fifth one.
The question is :
Do I have an array of size 2 or size 5 for these checkboxes on the form of server?
I thought I would have a
String array of size 5 with the value of {null, "1", null, null, "1"}
Please make me sure.
I want to know what http does for me.