下面是实现会签功能的客户端代码,现在是按会签人的先后顺序来显示会签人员的签名的。怎样修改才能让它反过来排列签名,也就是后面的签名显示在前 <table width="649" height="120" border="0" align="center" cellpadding="0" cellspacing="0" class="css002"> 
<tr> 
<td width="274" align="left" valign="top" rowspan="2"> 
<table width="98%" height="111" border="0" cellpadding="0" cellspacing="0" class="css003"> 
<tr> 
<td height="20">会 签:</td> 
</tr> 
<tr> 
<td height="100" align="left" valign="top"> 
<table> 
<% 
num=3; 
min=0; 
max=0; 
List togethorchecklist=(List)request.getAttribute("togethorchecklist"); 
for(int k=0;k<=togethorchecklist.size()/num;k++){ 
%> 
<tr> 
<% 
min=num*k; 
max=num*(k+1)-1; 
if(max>togethorchecklist.size()-1) 
max=togethorchecklist.size()-1; 
for(int i=min;i<=max;i++){//第k行 
%> 
<td> 
<% FlowNode fn=(FlowNode)togethorchecklist.get(i); 
%> 
<img src="uploaddir/signature/<%=fn.getOpinion()%>" width="90" height="40" border="0"><br /> 
<font color="black"><%=fn.getDealtime().substring(0,10)%></font><br /> </td>

解决方案 »

  1.   

    此回复为自动发出,仅用于显示而已,并无任何其他特殊作用
    楼主【speaksoftlylove】截止到2008-07-22 09:38:35的历史汇总数据(不包括此帖):
    发帖的总数量:0                        发帖的总分数:0                        每贴平均分数:0                        
    回帖的总数量:0                        得分贴总数量:0                        回帖的得分率:0%                       
    结贴的总数量:0                        结贴的总分数:0                        
    无满意结贴数:0                        无满意结贴分:0                        
    未结的帖子数:0                        未结的总分数:0                        
    结贴的百分比:---------------------结分的百分比:---------------------
    无满意结贴率:---------------------无满意结分率:---------------------
    如何结贴请参考这里:http://topic.csdn.net/u/20080501/09/ef7ba1b3-6466-49f6-9d92-36fe6d471dd1.html
      

  2.   

    request.getAttribute("togethorchecklist")
    你在查询togethorchecklist时按建立时间倒序一下就行