Krisha,
To recap your issue:
JSP <html:hidden property="regularPlan" value="true" /> ---------->
SavePlanProfileAction.java
[request.getParameter("regularPlan");] ----------->
/acctmgmt/updatePlanProfileContent.jsp "Error"
Option A: (your current choice):
JSP:
<html:hidden property="regularPlan" value="true" />
or
<input type="hidden" name="regularPlan" value="true"/>
SavePlanProfileAction:
PlanForm planForm = (PlanForm) form;
request.getParameter("regularPlan")
updatePlanProfileContent.jsp (not sure what you're using but ):
<%= request.getParameter("regularPlan") %>
Option B: (add planType to PlanForm like suggested several times)
JSP:
<html:hidden property="PlanForm" name="regularPlan" value="true" />
SavePlanProfileAction:
PlanForm planForm = (PlanForm) form;
updatePlanProfileContent.jsp (not sure what you're using but ):
<html:text name="PlanForm" property="regularPlan" />
<bean:write name="PlanForm" property="regularPlan" />
Hopefully, this helps.
Shed.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]