<%@ page contentType="text/html; charset=GBK" language="java" import="java.sql.*" errorPage="errorpage.jsp" %> <% String thisPage="viewuser.jsp"; String uid=request.getParameter("uid"); if (!Login.isLogin(request)){ response.sendRedirect("login.jsp"); } if (!Login.verifyPermit(request,Login.CAN_VIEW_USER) ){ response.sendRedirect("noprivilege.jsp"); } else{ if (uid==null||uid.length()==0){ uid=(String)session.getAttribute("userID"); } if(!Users.findByUserID(uid,request)){ response.sendRedirect("noprivilege.jsp"); } } %> 重点技改项目进度
  主页  |   用户管理  |   项目管理  |  进度管理  |   系统设置  |   退出系统  |
名称 代码 行业
地址 邮政编码 地区
 <%if (Login.verifyPermit(request,Login.CAN_MODIFY_USER)){%> 修改该用户 | <%}%><%if (Login.verifyPermit(request,Login.CAN_ADD_PROJECT)){%>添加新项目 | <%}%>
<% boolean hasData=Projects.findByCorpID(uid,request); %> <% int i=1; while(hasData){%> <%hasData=Projects.next(); i++; } %>
序号 项目名称 项目类型 所属企业 地区 行业 最后进度
<%=i%> "> <%if ("1".equalsIgnoreCase(Projects.getGz())){%> 国债(第批) <%}%> <%if ("1".equalsIgnoreCase(Projects.getSg())){%> 双高一优(第批) <%}%> <%if ("1".equalsIgnoreCase(Projects.getSzd())){%> 省重点技改 <%}%> "> <%=Projects.getCutOffDate()==null?"未录入":Projects.getCutOffDate().toString().substring(0,4)+"年"+Projects.getCutOffDate().toString().substring(5,7)+"月"%>
<% Users.close(); Projects.close(); %>