<%
int rowCount = request.getAttribute("rowCount");
%>
...
<table>
<% 
for(int i = 0; i < rowCount; i ++) {
%>
<tr>
 <td width="10%" height="22" align="left">用户操作指令</td>
 <td width="80%" height="22" align="left" colspan="3"><input class="InputLabelCell" id="select_date2" style="width: 260; height: 23" name="USER_OPERATOR" size="20"></td>
</tr>
<%
}
%>
</table>是这样吗?