如何设置隐藏标签的值

时间:2013-02-11 10:51:59

标签: jsp struts-1

我正在使用<html:hidden styleId="user" property="issueBranch" value='' /> 对于<html:hidden>的值,我想设置从<bean:write name="sessionData" property="userId"/>获取的值 怎么做?

1 个答案:

答案 0 :(得分:1)

使用

<html:hidden styleId="user" property="issueBranch"/>

并在调度到JSP的操作中,将表单bean的issueBranch属性设置为您想要的属性:

myActionForm.setIssueBranch(sessionData.getUserId());