I am setting 'Id' in a hidden field. what should I do to get this value in Scriptlet?
I have this field
<html:hidden name="ConfigForm" property="ConfigId" styleId="ConfigId"/>
i want this field's value in my scriptlet which has some line of code like this
<% Integer ConfigId =1;
ConfigDTO = getConfig(ConfigId, null); %>
For now im passing hardcoded ConfgiId but I need to replace it with hidden field value. –