私の行動では:
.....
String status = "add";
servletRequest.setAttribute("button", status);
....
私のJSPでは:
<c:if test='${button == "add"}'>
<c:set var="edittype" value="add" />
</c:if>
<c:if test='${button == "update"}'>
<c:set var="edittype" value="update" />
</c:if>
私が試してみました:
<html:hidden property ="" value="edittype" />
と
<html:hidden property ="" value="${button}" />
そしてどちらの仕事もありません。どうすればいいですか?