为什么我的jsp页面没有显示出来信息啊,控制台显示也没有报错,虽然没有白框但是确实可以输入,可能是浏览器问题,但是不至于内容也不显示

来源:3-11 修改学生资料-实现页面显示要修改的生资料

玖丶

2019-05-11 02:24

有没有同样问题的同学

写回答 关注

1回答

  • 玖丶
    2019-05-11 02:30:15

     //修改雇员资料动作
     public String modify()
     {
      //获得传递过来的雇员编号
      int id =Integer.parseInt(request.getParameter("id"));
      EmployeesDAO edao = new EmployeesDAOImpl();
      Employees employee=edao.queryEmployeesBySid(id);
      //保存在会话中
      session.setAttribute("modify_enployees", employee);
      return "modify_success";
     }
    }



    <strong>修改雇员资料</strong>
    <br>
    <br>
    <form name="modifyForm" action="<%=path%>/employees/Employees_modify_success.jsp" method="post">
    <table width="400" >
      <tr>
        <td width="30%">雇员编号:</td>
        <td><input type="text" name="id" value='<s:property value="#session.modify_employees.id"/>'  readonly="readonly"/></td>
      </tr>
      <tr>
        <td width="30%">雇员姓名:</td>
        <td><input type="text" name="name" value='<s:property value="#session.modify_employees.name"/>'/></td>
      </tr>
      <tr>
        <td width="30%">服务领域:</td>
        <td><input type="text" name="aspect" value='<s:property value="#session.modify_employees.aspect"/>'/></td>
      </tr>
      <tr>
        <td width="30%">月薪:</td>
        <td><input type="text" name="price" value='<s:property value="#session.modify_employees.price"/>'/></td>
      </tr>
      <tr>
        <td width="30%">照片:</td>
        <td><input type="text" name="picture" value='<s:property value="#session.modify_employees.picture"/>'/></td>
      </tr>
      <tr>
        <td colspan="2" align="center"><input class="button" type="submit" value="修改"></td>
      </tr>
    </table>
    </form>




    是不是因为我的id是int类型的,有没有哪位小伙伴知道怎么改的,非常谢谢!

使用Struts2+Hibernate开发学生信息管理功能

Strust2+Hibernate整合开发案例,Java Web开发技能更上一层楼

80701 学习 · 754 问题

查看课程

相似问题