Pass Value To Servlet From A Hidden Input Type
I am trying to pass the parameter called value in the hidden input type to my servlet. It is like that: retour.append('
Solution 1:
You need to add a "Name" attribute to your Hidden field as:
retour.append(".. name=[field_name] ..");
Post a Comment for "Pass Value To Servlet From A Hidden Input Type"