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

📄 linkmanform.jsp

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻 JSP
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ include file="/commons/taglibs.jsp" %>
<script language="javascript" src="js/calendar.js"></script>
<html>
  <head>

    <title>My JSP 'clientList.jsp' starting page</title>
    <%@ include file="/commons/meta.jsp" %>
  </head>
  
<body class="bodycolor" topmargin="5" onload="document.form1.LINKMAN_NAME.focus();">

<table class="title1">
  <tr>
    <td class="Big"><img src="${ctx }/images/notify_new.gif" align="absmiddle"><span class="big3"> 联系人编辑</span>
    </td>
  </tr>
</table>
<br>

<html:form action="linkMan.do" method="post">
<html:hidden property="p" value="save"/>
<html:hidden property="id"/>
<table class="tablestyle1">
   <tr>
    <td nowrap  class="TableHeader" colspan="4" align="left">
     基本信息
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData" width="25%">客户单位: </td>
    
    <td class="TableData" colspan="3">
    	<html:select property="clientId">
    		<html:option value="">---请选择---</html:option>
    		<html:options collection="clients" property="id" labelProperty="clientName"/> 
    	</html:select>
    	<font color="red"><html:errors property="clientId" /></font>
    </td>
   </tr>

   <tr>
    <td nowrap class="TableData" width="25%">联系人姓名: </td>
    <td nowrap class="TableData">
        <html:text property="linkManName"  size="20" maxlength="100" />&nbsp;
        <font color="red"><html:errors property="linkManName" /></font>
    </td>
    <td nowrap class="TableData" width="25%"> 性别:</td>
      <td class="TableData">
        <html:select property="sex" >
          <html:option value="男">男</html:option>
          <html:option value="女" >女</html:option>
        </html:select>
      </td>
   </tr>
   <tr>
    <td nowrap class="TableData" width="25%">出生日期: </td>
    <td nowrap class="TableData" colspan="3">
        <html:text property="birthday"   readonly="true" size="20" maxlength="10" />&nbsp;
        <img src="${ctx }/images/calendar.gif" ondblClick="setday(birthday)">
    </td>
   
  </tr>
  <tr>
    <td nowrap  class="TableHeader" colspan="4" align="left">
      联系方式
    </td>
  </tr>
   <tr>
    <td nowrap class="TableData">家庭住址: </td>
    <td nowrap class="TableData" colspan="3">
       <html:textarea property="address"  cols="57" rows="3" ></html:textarea>
       <font color="red"><html:errors property="address" /></font>
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData">家庭电话: </td>
    <td nowrap class="TableData" colspan="3">
        <html:text property="telephone" ></html:text>
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData">手机: </td>
    <td nowrap class="TableData">
        <html:text property="mobilephone" ></html:text>
        <font color="red"><html:errors property="mobilephone" /></font>
    </td>
     <td nowrap class="TableData">EMAIL: </td>
    <td nowrap class="TableData">
        <html:text property="email" ></html:text>
        <font color="red"><html:errors property="email" /></font>
    </td>
  </tr>
   <tr>
    <td nowrap class="TableData">QQ号码: </td>
    <td nowrap class="TableData">
        <html:text property="qq" ></html:text>
    </td>
    <td nowrap class="TableData">MSN: </td>
    <td nowrap class="TableData">
        <html:text property="msn" ></html:text>
    </td>
   </tr>
   <tr>
    <td nowrap  class="TableHeader" colspan="4" align="left">
       备注
    </td>
  </tr>

   <tr>
    <td nowrap class="TableData" width="120">备注:</td>
    <td nowrap class="TableData" colspan="3">
      <html:textarea property="remark" cols="57" rows="3"></html:textarea>
    </td>
   </tr>
   <tr>
    <td nowrap  class="TableControl" colspan="4" align="center">
        <input type="submit" value="确定" class="BigButton" title="添加联系人信息">&nbsp;
        <input type="reset" value="重填" class="BigButton"  title="重填">
    </td>
   </tr>
</table>
</html:form>

</body>
</html>

⌨️ 快捷键说明

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