I have text boxes like which will have some values and i would like to create a hash map with no duplicates and send that hash map to action class.
<input type="text" name="test1" value="test" />
<input type="text" name="test2" value="test2" />
Like the above there will be N
number of text boxes and create a hash map key as name of the text box and value as the value of the text box
would some one help me as how to do this please.