book_do.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ page import = "com.redmoon.oa.book.*"%>
  3. <%@ page import = "cn.js.fan.util.*"%>
  4. <html>
  5. <head>
  6. <title></title>
  7. <%@ include file="../inc/nocache.jsp"%>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  9. <link rel="stylesheet" href="../common.css" type="text/css">
  10. <script language="javascript">
  11. <!--
  12. //-->
  13. </script>
  14. </head>
  15. <body bgcolor="#FFFFFF" text="#000000">
  16. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  17. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  18. <%
  19. String priv="book.all";
  20. if (!privilege.isUserPrivValid(request, priv))
  21. {
  22. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  23. return;
  24. }
  25. BookMgr bm = new BookMgr();
  26. boolean re = false;
  27. String op = ParamUtil.get(request, "op");
  28. if (op.equals("add")) {
  29. try {
  30. re = bm.create(request);
  31. }
  32. catch (ErrMsgException e) {
  33. out.print(StrUtil.Alert_Back(e.getMessage()));
  34. }
  35. if (re) {
  36. out.print(StrUtil.Alert_Redirect("添加成功!", "book_add.jsp"));
  37. //out.print("OK!");
  38. }
  39. }
  40. if (op.equals("modify")) {
  41. try {
  42. re = bm.modify(request);
  43. }
  44. catch (ErrMsgException e) {
  45. out.print(StrUtil.Alert_Back(e.getMessage()));
  46. }
  47. if (re) {
  48. out.print(StrUtil.Alert_Back("修改成功!"));
  49. }
  50. }
  51. if (op.equals("borrow")) {
  52. try {
  53. re = bm.borrow(request);
  54. }
  55. catch (ErrMsgException e) {
  56. out.print(StrUtil.Alert_Back(e.getMessage()));
  57. }
  58. if (re) {
  59. out.print(StrUtil.Alert_Back("借书成功!"));
  60. }
  61. }
  62. if (op.equals("del")) {
  63. try {
  64. re = bm.del(request);
  65. }
  66. catch (ErrMsgException e) {
  67. out.print(StrUtil.Alert_Back(e.getMessage()));
  68. }
  69. if (re) {
  70. out.print(StrUtil.Alert_Redirect("删除成功!", "book_list.jsp"));
  71. }
  72. }
  73. %>
  74. </body>
  75. </html>