个人简历管理系统(11)- 查看简历具体信息

个人简历管理系统- 查看简历具体信息

  • 文件结构
  • show.jsp
  • 备注

文件结构

个人简历管理系统(11)- 查看简历具体信息_第1张图片

show.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@page import="com.resume.bean.Resume" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<html>
<head>
<%@include file="link.html" %>
 <c:if test="${not empty requestScope.message}">
   <script>
	  alert("{requestScope.message}">");
	script>
c:if>
head>
<body>
<%@include file="header.html" %>
<form id="form1" name="form1" method="post" action="ResumeService?method=update">
       <table border="1" style="margin-left:200px;">
                 <tr>
                    <td scope="row">姓名:td>
                    <td><input type="text" name="username" value="${requestScope.resume.username}">td>
                    <td>性别:td>
                    <td><input type="text" name="sex" value="${requestScope.resume.sex}">td>
                    <td rowspan="5">照片td>
                tr>
                <tr>
                    <td scope="row">出生年月:td>
                    <td><input type="date" name="birth" value="${requestScope.resume.birth}">td>
                    <td>民族:td>
                    <td><input type="text" name="ethnic" value="${requestScope.resume.ethnic}">td>
                tr>
                <tr>
                    <td scope="row">籍贯:td>
                    <td><input type="text" name="native" value="${requestScope.resume._native}">td>
                    <td>政治面貌:td>
                    <td><input type="text" name="politic" value="${requestScope.resume.politic}">td>
                tr>
                 <tr>
                    <td scope="row">本科专业:td>
                    <td><input type="text" name="mayor" value="${requestScope.resume.mayor}">td>
                     <td>毕业学校:td>
                    <td><input type="text" name="school" value="${requestScope.resume.school}">td>
                tr>
                 <tr>
                    <td scope="row">联系电话 :td>
                    <td><input type="text" name="telephone" value="${requestScope.resume.telephone}">td>
                    <td>E-mail:td>
                    <td><input type="email" name="email" value="${requestScope.resume.email}">td>
                tr>
                <tr>
  					<td colspan="5"> 技能、特长或爱好:<br>
						<textarea rows="5" cols="80" name="skill"><c:out value="${requestScope.resume.skill}">c:out>textarea>
  					td>
                <tr>
  					<td colspan="5"> 个人简历:<br>
						<textarea rows="5" cols="80" name="experience"><c:out value="${requestScope.resume.experience}">c:out>textarea>
  					td>
                tr>
                 <tr>
  					<td colspan="5"> 自我评价:<br>
						<textarea rows="5" cols="80" name="evaluation"><c:out value="${requestScope.resume.evaluation}">c:out>textarea>
  					td>
                tr>
           table>
           <input type="submit" value="修改" style="margin-left:300px;">
           <input type="hidden" name="id" value="${requestScope.resume.id}"/>
        form>
body>
html>

备注

  • 项目相关博客
    个人简历管理系统(1)-数据库创建
    个人简历管理系统(2)-数据库连接
    个人简历管理系统(3)- 登陆与注册界面
    个人简历管理系统(4)-javaBean层
    个人简历管理系统(5)-Dao
    个人简历管理系统(6)-登陆与注册后端实现
    个人简历管理系统(7)-控制层
    个人简历管理系统(8)- 修改密码
    个人简历管理系统(9)- 添加简历
    个人简历管理系统(10)- 查看所有简历列表
    参考博客
    用eclipse创建一个javaweb项目

你可能感兴趣的:(java,web)