struts2 表单提交有关问题

struts2 表单提交问题s:form namectl00 methodpost actionupdate idfthemesimple我想在a

struts2 表单提交问题
<s:form name="ctl00" method="post" action="update" id="f"
theme="simple">

我想在action="update?id=${pro.id}",为什么不对呢,应该怎么写?

[解决办法]
将这个${pro.id}参数写成隐藏域 放在form中,一起提交过去

<input type=hidden name="pro_id" value=${pro.id}>