finishinfo.jsp
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" import="java.sql.*,java.lang.*" %>
  2. <%request.setCharacterEncoding("gbk"); %>
  3. <jsp:useBean id="sql" scope="page" class="control.sqlcontrol" />
  4. <html>
  5. <head>
  6. <title>
  7. viewinfo_do
  8. </title>
  9. </head>
  10. <body bgcolor="#ffffff">
  11. <div align="center">
  12. <%
  13. sql.getSQL2005conn("dbconfig.xml");
  14. String id = request.getParameter("id");
  15. sql.MouChoose("update perinfo set isread='yes' where id="+id+";");
  16. response.sendRedirect("viewinfo.jsp");
  17. %>
  18. </div>
  19. </body>
  20. </html>