PersonalInfo.jsp~2~
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- <%@ page contentType="text/html; charset=GBK" %>
- <HTML>
- <HEAD><TITLE></TITLE></HEAD>
- <BODY>
- <%@ include file="CompanyBanner.html" %>
- <%
- Enumeration input = request.getParameterNames();
- while(input.hasMoreElements()) {
- String name = (String) input.nextElement();
- String value = request.getParameter(name);
- if (value.equals("getTimeOff")) {
- %>
- <jsp:include page="PresentTimeOffData.jsp" />
- <% } else if (value.equals("getHealthCare")) { %>
- <jsp:include page="PresentPersonalHealthCareInfo.jsp" />
- <%
- } //end else
- } // end while loop
- %>
- <%@ include file="SiteNavigator.html" %>
- </BODY>
- </HTML>