From 4feaf1b685c5662b8536f21df2ffff418e67420c Mon Sep 17 00:00:00 2001 From: editor <@51Aspx.com> Date: Mon, 1 Jul 2024 16:56:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 51Aspx源码必读.txt | 44 +++++++++++++++++++ App_Code/ASPNET2System.cs | 15 +++++++ App_Code/Attachment.cs | 15 +++++++ App_Code/Category.cs | 15 +++++++ App_Code/Document.cs | 15 +++++++ App_Code/Role.cs | 15 +++++++ App_Code/Tree.cs | 15 +++++++ App_Code/User.cs | 15 +++++++ CSS/ASPNET2BaseCss.css | 15 +++++++ CSS/ASPNET2NoLinkCss.css | 15 +++++++ CSS/ASPNET2Normal.css | 15 +++++++ CSS/ASPNET2WebNormal.css | 15 +++++++ CSS/Calendar.css | 13 ++++++ CSS/Search.css | 1 + CSS/TreeView.css | 15 +++++++ Default.aspx | 15 +++++++ Default.aspx.cs | 15 +++++++ .../Attachment/AttachmentManage.aspx | 15 +++++++ .../Attachment/AttachmentManage.aspx.cs | 15 +++++++ DesktopModules/Category/CategoryManage.aspx | 15 +++++++ .../Category/CategoryManage.aspx.cs | 15 +++++++ DesktopModules/Document/AddDocument.aspx | 15 +++++++ DesktopModules/Document/AddDocument.aspx.cs | 15 +++++++ DesktopModules/Document/BrowerDocument.aspx | 15 +++++++ .../Document/BrowerDocument.aspx.cs | 15 +++++++ DesktopModules/Document/DocumentManage.aspx | 15 +++++++ .../Document/DocumentManage.aspx.cs | 15 +++++++ DesktopModules/Document/UpdateDocument.aspx | 15 +++++++ .../Document/UpdateDocument.aspx.cs | 15 +++++++ DesktopModules/Document/ViewDocument.aspx | 15 +++++++ DesktopModules/Document/ViewDocument.aspx.cs | 15 +++++++ DesktopModules/Index.aspx | 15 +++++++ DesktopModules/Index.aspx.cs | 15 +++++++ DesktopModules/LeftTree.aspx | 15 +++++++ DesktopModules/LeftTree.aspx.cs | 15 +++++++ DesktopModules/Main.aspx | 15 +++++++ DesktopModules/Main.aspx.cs | 15 +++++++ DesktopModules/MainDesktop.aspx | 15 +++++++ DesktopModules/MainDesktop.aspx.cs | 15 +++++++ DesktopModules/Role/AddRole.aspx | 15 +++++++ DesktopModules/Role/AddRole.aspx.cs | 15 +++++++ DesktopModules/Role/RoleManage.aspx | 15 +++++++ DesktopModules/Role/RoleManage.aspx.cs | 15 +++++++ DesktopModules/Role/UpdateRole.aspx | 15 +++++++ DesktopModules/Role/UpdateRole.aspx.cs | 15 +++++++ DesktopModules/User/AddUser.aspx | 15 +++++++ DesktopModules/User/AddUser.aspx.cs | 15 +++++++ DesktopModules/User/UpdateUserPwd.aspx | 15 +++++++ DesktopModules/User/UpdateUserPwd.aspx.cs | 15 +++++++ DesktopModules/User/UserManage.aspx | 15 +++++++ DesktopModules/User/UserManage.aspx.cs | 15 +++++++ DesktopModules/User/ViewUser.aspx | 15 +++++++ DesktopModules/User/ViewUser.aspx.cs | 15 +++++++ DesktopModules/UserLogout.aspx | 15 +++++++ DesktopModules/UserLogout.aspx.cs | 15 +++++++ DesktopModules/ValidateImage.aspx | 13 ++++++ DesktopModules/ValidateImage.aspx.cs | 15 +++++++ Global.asax | 15 +++++++ UpgradeLog.htm | 15 +++++++ UserControls/BottomBanner.ascx | 11 +++++ UserControls/BottomBanner.ascx.cs | 15 +++++++ UserControls/SystemTop.aspx | 15 +++++++ UserControls/SystemTop.aspx.cs | 15 +++++++ UserControls/TopBanner.ascx | 9 ++++ UserControls/TopBanner.ascx.cs | 15 +++++++ 65 files changed, 976 insertions(+) create mode 100644 51Aspx源码必读.txt create mode 100644 App_Code/ASPNET2System.cs create mode 100644 App_Code/Attachment.cs create mode 100644 App_Code/Category.cs create mode 100644 App_Code/Document.cs create mode 100644 App_Code/Role.cs create mode 100644 App_Code/Tree.cs create mode 100644 App_Code/User.cs create mode 100644 CSS/ASPNET2BaseCss.css create mode 100644 CSS/ASPNET2NoLinkCss.css create mode 100644 CSS/ASPNET2Normal.css create mode 100644 CSS/ASPNET2WebNormal.css create mode 100644 CSS/Calendar.css create mode 100644 CSS/Search.css create mode 100644 CSS/TreeView.css create mode 100644 Default.aspx create mode 100644 Default.aspx.cs create mode 100644 DesktopModules/Attachment/AttachmentManage.aspx create mode 100644 DesktopModules/Attachment/AttachmentManage.aspx.cs create mode 100644 DesktopModules/Category/CategoryManage.aspx create mode 100644 DesktopModules/Category/CategoryManage.aspx.cs create mode 100644 DesktopModules/Document/AddDocument.aspx create mode 100644 DesktopModules/Document/AddDocument.aspx.cs create mode 100644 DesktopModules/Document/BrowerDocument.aspx create mode 100644 DesktopModules/Document/BrowerDocument.aspx.cs create mode 100644 DesktopModules/Document/DocumentManage.aspx create mode 100644 DesktopModules/Document/DocumentManage.aspx.cs create mode 100644 DesktopModules/Document/UpdateDocument.aspx create mode 100644 DesktopModules/Document/UpdateDocument.aspx.cs create mode 100644 DesktopModules/Document/ViewDocument.aspx create mode 100644 DesktopModules/Document/ViewDocument.aspx.cs create mode 100644 DesktopModules/Index.aspx create mode 100644 DesktopModules/Index.aspx.cs create mode 100644 DesktopModules/LeftTree.aspx create mode 100644 DesktopModules/LeftTree.aspx.cs create mode 100644 DesktopModules/Main.aspx create mode 100644 DesktopModules/Main.aspx.cs create mode 100644 DesktopModules/MainDesktop.aspx create mode 100644 DesktopModules/MainDesktop.aspx.cs create mode 100644 DesktopModules/Role/AddRole.aspx create mode 100644 DesktopModules/Role/AddRole.aspx.cs create mode 100644 DesktopModules/Role/RoleManage.aspx create mode 100644 DesktopModules/Role/RoleManage.aspx.cs create mode 100644 DesktopModules/Role/UpdateRole.aspx create mode 100644 DesktopModules/Role/UpdateRole.aspx.cs create mode 100644 DesktopModules/User/AddUser.aspx create mode 100644 DesktopModules/User/AddUser.aspx.cs create mode 100644 DesktopModules/User/UpdateUserPwd.aspx create mode 100644 DesktopModules/User/UpdateUserPwd.aspx.cs create mode 100644 DesktopModules/User/UserManage.aspx create mode 100644 DesktopModules/User/UserManage.aspx.cs create mode 100644 DesktopModules/User/ViewUser.aspx create mode 100644 DesktopModules/User/ViewUser.aspx.cs create mode 100644 DesktopModules/UserLogout.aspx create mode 100644 DesktopModules/UserLogout.aspx.cs create mode 100644 DesktopModules/ValidateImage.aspx create mode 100644 DesktopModules/ValidateImage.aspx.cs create mode 100644 Global.asax create mode 100644 UpgradeLog.htm create mode 100644 UserControls/BottomBanner.ascx create mode 100644 UserControls/BottomBanner.ascx.cs create mode 100644 UserControls/SystemTop.aspx create mode 100644 UserControls/SystemTop.aspx.cs create mode 100644 UserControls/TopBanner.ascx create mode 100644 UserControls/TopBanner.ascx.cs diff --git a/51Aspx源码必读.txt b/51Aspx源码必读.txt new file mode 100644 index 0000000..eb18798 --- /dev/null +++ b/51Aspx源码必读.txt @@ -0,0 +1,44 @@ +ASP.NET企业信息文档管理系统 + +一、源码描述 +系统环境:VS2022 sql2019 + +二、功能介绍 +一个可以用于企业内部的文档资料管理的系统平台,利用TreeView控件进行树控制 +有类别管理、文档管理、添加文档、浏览文档、附件管理、角色管理、添加角色、用户管理功能模块。 +操作过程中:  +1:选择上下移动按钮可以改变角色的排列顺序;  +2:选择"pen"型按钮可以修改你所选的角色,并在下面的文本框中填写修改后的角色名称;  +3:选择"X"型按钮可以删除你所选的角色。 + +默认管理帐号密码均为51aspx + +三、注意事项 +1、在项目web.config修改数据库连接字符串,附加数据库。 +2、管理员账号与密码:51aspx 51aspx 。 +3、ctrl+F5运行即可。 + + + + + +作者: zhangyd + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/DocumentManager +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: https://www.51aspx.com + 讨论圈: https://club.51aspx.com/ + +平台声明: + +1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用; +2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有; +3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com ); +4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性; + +友情提示: + 一般数据库文件默认在 DB_51Aspx 文件夹下 + 默认账号密码一般均为51Aspx + 关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help diff --git a/App_Code/ASPNET2System.cs b/App_Code/ASPNET2System.cs new file mode 100644 index 0000000..ee58724 --- /dev/null +++ b/App_Code/ASPNET2System.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; + +//��Դ��������www.51aspx.com(���������������) + +namespace DocumentManager +{ + /// diff --git a/App_Code/Attachment.cs b/App_Code/Attachment.cs new file mode 100644 index 0000000..829f17c --- /dev/null +++ b/App_Code/Attachment.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Data.SqlClient; +using SQLHelper; + +namespace DocumentManager +{ + /// diff --git a/App_Code/Category.cs b/App_Code/Category.cs new file mode 100644 index 0000000..829f17c --- /dev/null +++ b/App_Code/Category.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Data.SqlClient; +using SQLHelper; + +namespace DocumentManager +{ + /// diff --git a/App_Code/Document.cs b/App_Code/Document.cs new file mode 100644 index 0000000..f5e22c8 --- /dev/null +++ b/App_Code/Document.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using SQLHelper; +using System.Data.SqlClient; + +//��Դ��������www.51aspx.com(���������������) + +namespace DocumentManager diff --git a/App_Code/Role.cs b/App_Code/Role.cs new file mode 100644 index 0000000..829f17c --- /dev/null +++ b/App_Code/Role.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Data.SqlClient; +using SQLHelper; + +namespace DocumentManager +{ + /// diff --git a/App_Code/Tree.cs b/App_Code/Tree.cs new file mode 100644 index 0000000..c054183 --- /dev/null +++ b/App_Code/Tree.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Web.UI; +using System.Web.UI.WebControls; +using SQLHelper; +using System.Data.SqlClient; + +namespace DocumentManager +{ + /// + /// Summary description for Tree + /// + public class Tree + { + public static string ApplicationPath = "localhost"; diff --git a/App_Code/User.cs b/App_Code/User.cs new file mode 100644 index 0000000..aac84ff --- /dev/null +++ b/App_Code/User.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Security.Cryptography; +using SQLHelper; +using System.Data.SqlClient; +using System.Text; + +namespace DocumentManager diff --git a/CSS/ASPNET2BaseCss.css b/CSS/ASPNET2BaseCss.css new file mode 100644 index 0000000..349bf77 --- /dev/null +++ b/CSS/ASPNET2BaseCss.css @@ -0,0 +1,15 @@ +.Text { font-size: 9pt} +.Newbutton +{ font-size: 9pt; color: White; + font-family: "Tahoma","����"; + + } +.InputCss { + font-size: 9pt; + color: #003399; + font-family: "����"; + font-style: normal; + /*background-color: #CCCC99; */ + border-color: #93BEE2 #93BEE2 #93BEE2 #93BEE2 ; + border: 1px #93BEE2 solid; +} diff --git a/CSS/ASPNET2NoLinkCss.css b/CSS/ASPNET2NoLinkCss.css new file mode 100644 index 0000000..349bf77 --- /dev/null +++ b/CSS/ASPNET2NoLinkCss.css @@ -0,0 +1,15 @@ +.Text { font-size: 9pt} +.Newbutton +{ font-size: 9pt; color: White; + font-family: "Tahoma","����"; + + } +.InputCss { + font-size: 9pt; + color: #003399; + font-family: "����"; + font-style: normal; + /*background-color: #CCCC99; */ + border-color: #93BEE2 #93BEE2 #93BEE2 #93BEE2 ; + border: 1px #93BEE2 solid; +} diff --git a/CSS/ASPNET2Normal.css b/CSS/ASPNET2Normal.css new file mode 100644 index 0000000..349bf77 --- /dev/null +++ b/CSS/ASPNET2Normal.css @@ -0,0 +1,15 @@ +.Text { font-size: 9pt} +.Newbutton +{ font-size: 9pt; color: White; + font-family: "Tahoma","����"; + + } +.InputCss { + font-size: 9pt; + color: #003399; + font-family: "����"; + font-style: normal; + /*background-color: #CCCC99; */ + border-color: #93BEE2 #93BEE2 #93BEE2 #93BEE2 ; + border: 1px #93BEE2 solid; +} diff --git a/CSS/ASPNET2WebNormal.css b/CSS/ASPNET2WebNormal.css new file mode 100644 index 0000000..7c9a199 --- /dev/null +++ b/CSS/ASPNET2WebNormal.css @@ -0,0 +1,15 @@ +/* ================================ + CSS STYLES FOR IBUYSPY PORTAL + v1.0, 01/2001 + ================================ +*/ + + +/* PAGE BACKGROUND */ +/* background color for the header at the top of the page */ +.HeadBg +{ + background-color: darkred; +} + +/* background color for the content part of the pages */ diff --git a/CSS/Calendar.css b/CSS/Calendar.css new file mode 100644 index 0000000..c5a1698 --- /dev/null +++ b/CSS/Calendar.css @@ -0,0 +1,13 @@ +.C_FieldT { font-size: 9px; color: #000000; font-family: "Times New Roman", "Times", "serif"} +.C_Date { font-size: 9px; color: #000000; font-family: "Times New Roman", "Times", "serif"} +.C_YearT { font-size: 12px; color: #000000}.C_Button { font-family: "Times New Roman", "Times", "serif"; font-size: 10px} +.C_Clock { font-size: 14px; color: #000000; font-family: "Times New Roman", "Times", "serif"} +.C_Button{ + font-family: "Tahoma", "����"; + font-size: 12px; + color: White; + border: 1px solid ; + + font-style: normal ; + width: 20px; +} diff --git a/CSS/Search.css b/CSS/Search.css new file mode 100644 index 0000000..2b33642 --- /dev/null +++ b/CSS/Search.css @@ -0,0 +1 @@ +.Search_Txt { font-size: 9pt} diff --git a/CSS/TreeView.css b/CSS/TreeView.css new file mode 100644 index 0000000..70fc0c5 --- /dev/null +++ b/CSS/TreeView.css @@ -0,0 +1,15 @@ +body +{ + font-family:"Verdana", "Arial", "����"; font-size: 9pt; line-height: 14pt; + SCROLLBAR-3DLIGHT-COLOR: #cccccc; + SCROLLBAR-ARROW-COLOR: #333333; + SCROLLBAR-DARKSHADOW-COLOR: #cccccc; + SCROLLBAR-BASE-COLOR: #cccccc; +} + +/* PAGE BACKGROUND */ +/* background color for the header at the top of the page */ +.HeadBg +{ + background-color: darkred; +} diff --git a/Default.aspx b/Default.aspx new file mode 100644 index 0000000..c525cb7 --- /dev/null +++ b/Default.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Default" %> +<%@ Register TagPrefix="ucTop" TagName="TopBanner" Src="UserControls/TopBanner.ascx" %> +<%@ Register TagPrefix="ucBottom" TagName="BottomBanner" Src="UserControls/BottomBanner.ascx" %> + + + + + 企业信息文档管理系统 + + + + + + + diff --git a/Default.aspx.cs b/Default.aspx.cs new file mode 100644 index 0000000..0b40162 --- /dev/null +++ b/Default.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Data.SqlClient; + +public partial class Default : System.Web.UI.Page +{ + static string sValidator = ""; diff --git a/DesktopModules/Attachment/AttachmentManage.aspx b/DesktopModules/Attachment/AttachmentManage.aspx new file mode 100644 index 0000000..33a081f --- /dev/null +++ b/DesktopModules/Attachment/AttachmentManage.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AttachmentManage.aspx.cs" Inherits="AttachmentManage" %> + + + + + + 添加文档的附件 + + + + + + + +
diff --git a/DesktopModules/Attachment/AttachmentManage.aspx.cs b/DesktopModules/Attachment/AttachmentManage.aspx.cs new file mode 100644 index 0000000..2e833bb --- /dev/null +++ b/DesktopModules/Attachment/AttachmentManage.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using DocumentManager; +using System.Data.SqlClient; +using SQLHelper; +using System.IO; + diff --git a/DesktopModules/Category/CategoryManage.aspx b/DesktopModules/Category/CategoryManage.aspx new file mode 100644 index 0000000..7bdccf5 --- /dev/null +++ b/DesktopModules/Category/CategoryManage.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CategoryManage.aspx.cs" Inherits="CategoryManage" %> + + + + + + 类别管理页面 + + + + + + +
+ diff --git a/DesktopModules/Category/CategoryManage.aspx.cs b/DesktopModules/Category/CategoryManage.aspx.cs new file mode 100644 index 0000000..b83bfb7 --- /dev/null +++ b/DesktopModules/Category/CategoryManage.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using DocumentManager; + +public partial class CategoryManage : System.Web.UI.Page +{ + protected void Page_Load(object sender, EventArgs e) diff --git a/DesktopModules/Document/AddDocument.aspx b/DesktopModules/Document/AddDocument.aspx new file mode 100644 index 0000000..3ceb325 --- /dev/null +++ b/DesktopModules/Document/AddDocument.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AddDocument.aspx.cs" Inherits="AddDocument" %> + + + + + + 添加文档 + + + + + + + + diff --git a/DesktopModules/Document/AddDocument.aspx.cs b/DesktopModules/Document/AddDocument.aspx.cs new file mode 100644 index 0000000..0997fa5 --- /dev/null +++ b/DesktopModules/Document/AddDocument.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using DocumentManager; +using System.Data.SqlClient; +using SQLHelper; + +//5_1_a_s_p_x.c_o_m diff --git a/DesktopModules/Document/BrowerDocument.aspx b/DesktopModules/Document/BrowerDocument.aspx new file mode 100644 index 0000000..f5ccd71 --- /dev/null +++ b/DesktopModules/Document/BrowerDocument.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="BrowerDocument.aspx.cs" Inherits="BrowerDocument" %> + + + + + + 浏览文档 + + + + + + + + diff --git a/DesktopModules/Document/BrowerDocument.aspx.cs b/DesktopModules/Document/BrowerDocument.aspx.cs new file mode 100644 index 0000000..1ed45d2 --- /dev/null +++ b/DesktopModules/Document/BrowerDocument.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using DocumentManager; +using System.Data.SqlClient; +using SQLHelper; + +public partial class BrowerDocument : System.Web.UI.Page diff --git a/DesktopModules/Document/DocumentManage.aspx b/DesktopModules/Document/DocumentManage.aspx new file mode 100644 index 0000000..d6c7dc2 --- /dev/null +++ b/DesktopModules/Document/DocumentManage.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DocumentManage.aspx.cs" Inherits="DocumentManage" %> + + + + + + Untitled Page + + + + + + + + diff --git a/DesktopModules/Document/DocumentManage.aspx.cs b/DesktopModules/Document/DocumentManage.aspx.cs new file mode 100644 index 0000000..2edb6f0 --- /dev/null +++ b/DesktopModules/Document/DocumentManage.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Data.SqlClient; +using DocumentManager; +using SQLHelper; +//5_1_a_s_p_x.c_o_m + diff --git a/DesktopModules/Document/UpdateDocument.aspx b/DesktopModules/Document/UpdateDocument.aspx new file mode 100644 index 0000000..bbdf74b --- /dev/null +++ b/DesktopModules/Document/UpdateDocument.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="UpdateDocument.aspx.cs" Inherits="UpdateDocument" %> + + + + + + 修改文档信息 + + + + + + + + diff --git a/DesktopModules/Document/UpdateDocument.aspx.cs b/DesktopModules/Document/UpdateDocument.aspx.cs new file mode 100644 index 0000000..6f85ee2 --- /dev/null +++ b/DesktopModules/Document/UpdateDocument.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using System.Data.SqlClient; +using DocumentManager; + +public partial class UpdateDocument : System.Web.UI.Page +{ diff --git a/DesktopModules/Document/ViewDocument.aspx b/DesktopModules/Document/ViewDocument.aspx new file mode 100644 index 0000000..73f5776 --- /dev/null +++ b/DesktopModules/Document/ViewDocument.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ViewDocument.aspx.cs" Inherits="ViewDocument" %> + + + + + + 浏览文档 + + + + + + + + diff --git a/DesktopModules/Document/ViewDocument.aspx.cs b/DesktopModules/Document/ViewDocument.aspx.cs new file mode 100644 index 0000000..f65661f --- /dev/null +++ b/DesktopModules/Document/ViewDocument.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +using DocumentManager; +using System.Data.SqlClient; +using SQLHelper; + +public partial class ViewDocument : System.Web.UI.Page diff --git a/DesktopModules/Index.aspx b/DesktopModules/Index.aspx new file mode 100644 index 0000000..efb0356 --- /dev/null +++ b/DesktopModules/Index.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Index.aspx.cs" Inherits="Index" %> + + + + + 企业信息文档管理系统 + + + + + + + + + diff --git a/DesktopModules/Index.aspx.cs b/DesktopModules/Index.aspx.cs new file mode 100644 index 0000000..96480dd --- /dev/null +++ b/DesktopModules/Index.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Web; +using System.Web.Security; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.WebControls.WebParts; +using System.Web.UI.HtmlControls; +//��Դ��������www.51aspx.com(���������������) + +public partial class Index : System.Web.UI.Page +{ + protected void Page_Load(object sender, EventArgs e) diff --git a/DesktopModules/LeftTree.aspx b/DesktopModules/LeftTree.aspx new file mode 100644 index 0000000..2b547c9 --- /dev/null +++ b/DesktopModules/LeftTree.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="LeftTree.aspx.cs" Inherits="LeftTree" %> + + + + 企业信息文档管理系统 + + + + + +