页面设计的代码如下:
    <table class="datalist"  width="90%" align="center">
      <logic:present name="suns">
        <logic:iterate id="sun" name="suns" type="com.table.PlanSunProject">
          <logic:present name="sun">   
          <tr>      
           <td width="6%"><bean:write name="sun" property="id"/></td>
<td width="30%"><bean:write name="sun" property="projectname"/></td>
<td width="30%"><bean:write name="sun" property="buildingcompany"/></td>
<td width="10%"><bean:write name="sun" property="type"/></td>
<td width="10%"><bean:write name="sun" property="endtime"/></td>
<td width="7%">
<html:link page="/editDeploy.do" paramId="singleID" paramName="sun" paramProperty="projectid">编辑</html:link>
</td>
<td width="7%">
<html:link page="/deleteRelease.do" paramId="singleID" paramName="sun" paramProperty="projectid">删除</html:link>
</td>
  </tr>
          </logic:present>
        </logic:iterate>
      </logic:present>
    </table>我想向editDeploy.do中传递两个参数,值是sun中的projectname和type。那<html:link page="/editDeploy.do"></html:link>又如何写呢?