⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 selectinsure.jsp

📁 一个制作计划书的小程序
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312" %>
<%@ page language="java" import="java.lang.*,com.jilee.guoshou.*,com.jilee.tool.*,java.util.*,java.net.*" %>
<%@ include file="../include/checkReg.jsp" %>
<jsp:useBean id="plan" scope="session" class="com.jilee.guoshou.PlanManager"/>
<%
//选择险种
//作者:郭琛
%>
<%
ArrayList alCategoryCollection = plan.getCategoryCollection(request);
ArrayList alCategoryNames = plan.getCategoryNames();
ArrayList alCategoryIDS = plan.getCategoryID(request);
%>
<html>
<head>
<title>中国人寿营销支持系统网络通</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="../css/main.css" type="text/css">
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
  <tr>
    <td height="31">
      <div align="center" class="title14b">选择险种</div>
    </td>
  </tr>
  <tr>
    <td height="274">
      <div align="right"> </div>
      <form name="dataForm" method="post" action="">
        <div align="right">
          <div align="center">
            <table width="60%" border="0" cellpadding="0" cellspacing="2">
              <tr>
                <td height="22" bgcolor="#ABD3AB">
				  <select name="categoryType" onChange="javascript:dataForm.submit();">
                  <%=plan.getSelectCategoryTypes(request)%>
				  </select> </td>
              </tr>
              <%
				String arrColor[]={"","bgcolor=\"#E6ECE6\""};
				for(int i=0;i<alCategoryCollection.size();i++){
			  %>
              <tr>
                <td width="15%" height="22" <%=arrColor[i%2]%>>
				<%
				   String strName = (String)alCategoryCollection.get(i);
                                   CodeAndId codeAndId = (CodeAndId)alCategoryIDS.get(i);
                                   String strCode = codeAndId.getCode();
                                   String strId   = codeAndId.getId();

   			 	if((!alCategoryNames.contains(strName))&&(strCode.equals("U01"))){%>
				<a href="setInsure_U01.jsp?categoryIndex=<%=strCode%>&id=<%=strId%>"><%=strName%></a>
                                <%}else if (!alCategoryNames.contains(strName)){%>
  				<a href="setInsure.jsp?categoryIndex=<%=strCode%>&id=<%=strId%>"><%=strName%></a>
				<%}else{%><%=strName%><%}
                                %>
				</td>
              </tr>
              <%}%>
            </table>
          </div>

        </div>
        <p align="left">&nbsp;</p>
      </form>
      <p>&nbsp;</p>
    </td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -