board3.jsp
上传用户:sami52198
上传日期:2010-02-11
资源大小:5174k
文件大小:1k
源码类别:

电子政务应用

开发平台:

MultiPlatform

  1. <!--
  2. *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  3. @系统名称:  乐趣大型购物系统(2rich)              @
  4. @开  发:  乐趣工作室(2rich.net)            @
  5. @版权所有:    乐趣工作室(2rich.net)            @
  6. @主页地址:  http://www.2rich.net/                       @
  7. @电子邮件:  2rich@2rich.net              @
  8. @QQ  :  107740046                    @
  9. @                                                          @
  10. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
  11. -->
  12. <%
  13.           m_vct = news.getCommendNewsList("01");
  14.           
  15.    if(m_vct!=null&&m_vct.size()>0)
  16.     {
  17.        for(int i=0;i<m_vct.size();i++)
  18.         {
  19.            Vector t_vct = (Vector)m_vct.get(i);
  20.            boardParentID = t_vct.get(2).toString();
  21.            boardID = t_vct.get(1).toString();
  22.            title = (String)t_vct.get(3);
  23.            if(title.length()>11) title = title.substring(0,10)+"...";
  24.           %>
  25.                           <tr>
  26.                             <td height="16"  align="left">*<a href="newdetail.jsp?boardParentID=<%=boardParentID%>&boardID=<%=boardID%>&newid=<%=t_vct.get(0)%>  " target="_blank"><%=title%></a></td>
  27.                           </tr>          
  28.           <%
  29.           if(i==8) break;
  30.          }
  31.     }  
  32. %>