📄 basic.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'basic.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<div>
<html:form action="/resume" method="post" enctype="multipart/form-data">
<table>
<tr><td height="30px" style="font-size: 20;font-weight:bold" colspan="2"><a name="abasic">个人信息</a> </td></tr>
<tr><td width="10px" rowspan="6"></td><td>姓 名 :<html:text property="resume.resUserName" value="${requestScope.resume.resUserName}"/>
性别:<input name="resume.resUsersex" value="男" type="radio" checked="checked"/>男<input name="resume.resUsersex" value="女" type="radio" />
女
</td></tr>
<tr><td>出生日期:<html:text property="resume.resBirthday" value="${requestScope.resume.resBirthday}" onfocus="new WdatePicker(this,'%Y-%M-%D',false,'whyGreen')" styleClass="Wdate"/>
教育程度:<html:select property="resume.resLearnLevel" value="${requestScope.resume.resLearnLevel}">
<html:option key="博士" value="博士" /><html:option key="MBA" value="MBA" /><html:option key="硕士" value="硕士" /><html:option key="本科" value="本科" /><html:option key="大专" value="大专" /><html:option key="中专" value="中专" /><html:option key="中技" value="中技" /><html:option key="高中" value="高中" /><html:option key="初中" value="初中" /></html:select></td>
</tr>
<tr><td>现居住地:<html:text property="resume.resAddr" value="${requestScope.resume.resAddr}" size="50"/><input type="button" value="选择\修改" name="sut"/></td></tr>
<tr><td>联系方式:<html:text property="resume.resTel" value="${requestScope.resume.resTel}" size="50"/></td></tr>
<tr><td>求职状态:</td></tr>
<tr><td>添加照片:<html:file property="file"/></td></tr>
</table>
</html:form>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -