Code Search for Developers
 
 
  

usersList.jsp from PowerStone at Krugle


Show usersList.jsp syntax highlighted

<%@ page contentType="text/html;charset=GBK" language="java" 
import="org.powerstone.web.paging.PagingTag" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@taglib uri="/WEB-INF/ps-paging.tld" prefix="page" %>

<link rel="stylesheet" href="<%=request.getContextPath()%>/scripts/index.css"
 type="text/css">
<title>Óû§Áбí</title>

<table width="540" border="0" cellspacing="1" cellpadding="1" align=center>
<tr bordercolor="#F4F9FF" bgcolor="#F4F9FF">
	<td width="10%" align=center>id</td>
	<td width="45%" align=center>firstName</td>
	<td width="40%" align=center>lastName</td>
	<td width="5%" align=center>No</td>
</tr>
<logic:iterate id="user" name="usersList" type="org.powerstone.sample.User" indexId="ie">
	<tr>
		<td align=center><%=user.getId()%></td>
		<td align=center><%=user.getFirstName()!=null?user.getFirstName():""%></td>
		<td align=center><%=user.getLastName()!=null?user.getLastName():""%></td>
		<td align=center><%=PagingTag.computeRowNo(request)+ie.intValue()%></td>
	</tr>
</logic:iterate>
<br/>
<page:pagebar url="/user_query.html?" bordercolor="#F4F9FF" bgcolor="#F4F9FF"/>
<tr><td align=center>
<button onclick="location.href='<%=request.getContextPath()%>/'">·µ»Ø</button>
</td>
</tr>
</table>



See more files for this project here

PowerStone

PowerStone is an open source java WorkFlow Management System,based on Spring and Hibernate.The system is composed of an engine(processing xpdl documents edited with Enhydra JaWE),a flow management console,a worklist and an identity management module.

Project homepage: http://sourceforge.net/projects/powerstone
Programming language(s): Java,JSP,XML
License: other

  usersList.jsp