?? consultation.jsp
字號:
<%@ page language="java" pageEncoding="gbk"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/css/css.css">
<title>JSP for ConsultationForm form</title>
</head>
<body>
<html:form action="/consultation?method=create">
<table width="98%" border="0" cellspacing="1" cellpadding="3"
bgcolor="#eeeeee">
<tr bgcolor="#ffffff">
<td width="15%">
年齡 :
</td>
<td width="91%">
<html:text size="50" property="cage" />
<html:errors property="cage" />
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
備注 :
</td>
<td>
<html:text size="50" property="cremark" />
<html:errors property="cremark" />
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
來源 :
</td>
<td>
<SELECT NAME="sid">
<c:forEach items="${stusourcelist}" var="v">
<option value="${v.sid}">
${v.saddress}
</option>
</c:forEach>
</SELECT>[請選擇]
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
地址 :
</td>
<td>
<html:text size="50" property="caddress" />
<html:errors property="caddress" />
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
渠道專員 :
</td>
<td>
<html:text size="50" property="cinfoname" />
<html:errors property="cinfoname" />
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
性別:
</td>
<td>
<html:text size="50" property="csex" />
<html:errors property="csex" />
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
學歷 :
</td>
<td>
<html:text size="50" property="ceducationin" />
<html:errors property="ceducationin" />
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
報名情況 :
</td>
<td>
<html:text size="50" property="centered" />
<html:errors property="centered" />
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
類別:
</td>
<td>
<html:text size="50" property="ctype" />
<html:errors property="ctype" />
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
聯系方式 :
</td>
<td>
<html:text size="50" property="ctel" />
<html:errors property="ctel" />
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
畢業學校 :
</td>
<td>
<html:text size="50" property="cschool" />
<html:errors property="cschool" />
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
班級 :
</td>
<td>
<html:text size="50" property="cclass" />
<html:errors property="cclass" />
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
姓名 :
</td>
<td>
<html:text size="50" property="cname" />
<html:errors property="cname" />
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
咨詢師 :
</td>
<td>
<html:text size="50" property="userid"
value="${sessionScope.userid}" readonly="true" style="background color:#eeeeee"/>[此處不用填寫]
<html:errors property="userid" />
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
錄入時間:
</td>
<td>
<html:text size="50" property="cdate"
value="${sessionScope.sysdate}" readonly="true" style="background color:#eeeeee"/>[此處不用填寫]
<html:errors property="cdate" />
</td>
</tr>
<tr bgcolor="#ffffff">
<td>
</td>
<td>
<html:submit value="保存咨詢信息"/>
<html:cancel />
</td>
</tr>
</table>
</html:form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -