AddDocumentAction.jsp
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html;charset=gb2312" %>
  2. <%@ page import="java.util.*,com.gforce.gfoa.*,com.gforce.currency.*,java.util.*" %>
  3. <jsp:include page="/CheckLogin.jsp" flush="true"/> <% Session m_session = new Session(session); %>
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=gb2312"><meta http-equiv="pragma" content="no-cache">
  7. <title>文档管理-- GForce OA 2.0</title>
  8. <link href="../css/txt.jsp" rel="stylesheet" type="text/css">
  9. </HEAD>
  10. <%
  11. DocumentManager manager = new DocumentManager();
  12. int intDocumentID = 0;
  13. int iTypesID = (new Request(request)).GetInt("TypesID");
  14. int iSysDirID = (new Request(request)).GetInt("SysDirID");
  15. intDocumentID = manager.InsertRecord(new Request(request));
  16. if(intDocumentID>0)
  17. {
  18. %>
  19. <script language="JavaScript" type="text/JavaScript">
  20. alert("文档增加成功!");
  21. window.location="DocumentManage.jsp?SysDirID=<%=iSysDirID%>&TypesID=<%=iTypesID%>";
  22. </script>
  23. <%
  24. }
  25. else if(intDocumentID==-1)
  26. {
  27. %>
  28. <script language="JavaScript" type="text/JavaScript">
  29. alert("已经存在相同的文档,增加失败!");
  30. history.back();
  31. </script>
  32. <%
  33. }
  34. else
  35. {
  36. %>
  37. <script language="JavaScript" type="text/JavaScript">
  38. alert("未知错误,增加失败,请与管理员联系!");
  39. history.back();
  40. </script>
  41. <%
  42. }
  43. %>
  44. </HTML>