commit 8230a75db8ee88e48b85dcb5c112afcdf07a620a Author: editor <@51Aspx.com> Date: Tue May 14 17:27:16 2024 +0800 初始化 diff --git a/51Aspx源码必读.txt b/51Aspx源码必读.txt new file mode 100644 index 0000000..4c37c4f --- /dev/null +++ b/51Aspx源码必读.txt @@ -0,0 +1,43 @@ +图书馆管理系统ASP.NET2.0源码 + +一、源码描述 +环境:VS2022 sql2019 + +二、功能介绍 +书目查询、读者查询(默认帐号密码51aspx)、新书通报、书刊分类  +其中读者查询中有读者信息、借阅情况、借阅历史、超期催还、修改密码等 + LMS为项目文件夹、DB_51Aspx为数据库文件夹、附加即可。“PowerDesigner建模”目录下包含三个可运行文件MMS1.cdm,MMS.cdm,MMS.pdm分别为MMS系统的 +实体关系简图、实体关系图和数据库模型,使用PowerDesigner集成开发环境打开任意一个文件即可运行。   + +目录下的readme.doc(仅供参考)为详细说明文件 +注意:原文件是VS2002项目,为方便用户使用51aspx已经利用VS20005转换为Asp.net2.0版本,现在为VS2022 + +三、注意事项 +1、在项目web.config修改数据库连接字符串,附加数据库。 +2、管理员账号与密码:admin 51aspx 。 +3、ctrl+F5运行即可。 + + + + + +作者: 吴晨 + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/LibSys2000 +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: 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/AdvancedSearch.aspx b/AdvancedSearch.aspx new file mode 100644 index 0000000..a014b64 --- /dev/null +++ b/AdvancedSearch.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="AdvancedSearch.aspx.cs" AutoEventWireup="True" Inherits="BMS.AdvancedSearch" %> + + + + AdvancedSearch + + + + + + +
+ + +
diff --git a/AdvancedSearch.aspx.cs b/AdvancedSearch.aspx.cs new file mode 100644 index 0000000..07a1d92 --- /dev/null +++ b/AdvancedSearch.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace BMS +{ diff --git a/AdvancedSearch.aspx.designer.cs b/AdvancedSearch.aspx.designer.cs new file mode 100644 index 0000000..0f82372 --- /dev/null +++ b/AdvancedSearch.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BMS { + + + /// + /// AdvancedSearch class. diff --git a/AdvancedSearch.aspx.resx b/AdvancedSearch.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/AdvancedSearch.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/AdvancedSearchForReader.aspx b/AdvancedSearchForReader.aspx new file mode 100644 index 0000000..4860b4a --- /dev/null +++ b/AdvancedSearchForReader.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="AdvancedSearchForReader.aspx.cs" AutoEventWireup="True" Inherits="LMS.AdvancedSearchForReader" %> + + + + AdvancedSearchForReader + + + + + + + + + + diff --git a/AdvancedSearchForReader.aspx.cs b/AdvancedSearchForReader.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/AdvancedSearchForReader.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/AdvancedSearchForReader.aspx.designer.cs b/AdvancedSearchForReader.aspx.designer.cs new file mode 100644 index 0000000..59aab9d --- /dev/null +++ b/AdvancedSearchForReader.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// AdvancedSearchForReader class. diff --git a/AdvancedSearchForReader.aspx.resx b/AdvancedSearchForReader.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/AdvancedSearchForReader.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs new file mode 100644 index 0000000..fa5569d --- /dev/null +++ b/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +// +// �йس��򼯵ij�����Ϣ��ͨ������ +//���Լ����Ƶġ�������Щ����ֵ���޸������ +//��������Ϣ�� +// +[assembly: AssemblyTitle("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] diff --git a/Backup/AdvancedSearch.aspx b/Backup/AdvancedSearch.aspx new file mode 100644 index 0000000..a014b64 --- /dev/null +++ b/Backup/AdvancedSearch.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="AdvancedSearch.aspx.cs" AutoEventWireup="True" Inherits="BMS.AdvancedSearch" %> + + + + AdvancedSearch + + + + + + + +
+ +
diff --git a/Backup/AdvancedSearch.aspx.cs b/Backup/AdvancedSearch.aspx.cs new file mode 100644 index 0000000..07a1d92 --- /dev/null +++ b/Backup/AdvancedSearch.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace BMS +{ diff --git a/Backup/AdvancedSearch.aspx.designer.cs b/Backup/AdvancedSearch.aspx.designer.cs new file mode 100644 index 0000000..0f82372 --- /dev/null +++ b/Backup/AdvancedSearch.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BMS { + + + /// + /// AdvancedSearch class. diff --git a/Backup/AdvancedSearch.aspx.resx b/Backup/AdvancedSearch.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/AdvancedSearch.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/AdvancedSearchForReader.aspx b/Backup/AdvancedSearchForReader.aspx new file mode 100644 index 0000000..4860b4a --- /dev/null +++ b/Backup/AdvancedSearchForReader.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="AdvancedSearchForReader.aspx.cs" AutoEventWireup="True" Inherits="LMS.AdvancedSearchForReader" %> + + + + AdvancedSearchForReader + + + + + + + + + + diff --git a/Backup/AdvancedSearchForReader.aspx.cs b/Backup/AdvancedSearchForReader.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/Backup/AdvancedSearchForReader.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/Backup/AdvancedSearchForReader.aspx.designer.cs b/Backup/AdvancedSearchForReader.aspx.designer.cs new file mode 100644 index 0000000..59aab9d --- /dev/null +++ b/Backup/AdvancedSearchForReader.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// AdvancedSearchForReader class. diff --git a/Backup/AdvancedSearchForReader.aspx.resx b/Backup/AdvancedSearchForReader.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/AdvancedSearchForReader.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/AssemblyInfo.cs b/Backup/AssemblyInfo.cs new file mode 100644 index 0000000..fa5569d --- /dev/null +++ b/Backup/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +// +// �йس��򼯵ij�����Ϣ��ͨ������ +//���Լ����Ƶġ�������Щ����ֵ���޸������ +//��������Ϣ�� +// +[assembly: AssemblyTitle("")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("")] +[assembly: AssemblyTrademark("")] diff --git a/Backup/BookAdd.aspx b/Backup/BookAdd.aspx new file mode 100644 index 0000000..61b5f79 --- /dev/null +++ b/Backup/BookAdd.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BookAdd.aspx.cs" AutoEventWireup="True" Inherits="BMS.BookAdd" %> + + + + BookAdd + + + + + + + + +
+ diff --git a/Backup/BookAdd.aspx.cs b/Backup/BookAdd.aspx.cs new file mode 100644 index 0000000..07a1d92 --- /dev/null +++ b/Backup/BookAdd.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace BMS +{ diff --git a/Backup/BookAdd.aspx.designer.cs b/Backup/BookAdd.aspx.designer.cs new file mode 100644 index 0000000..d674b56 --- /dev/null +++ b/Backup/BookAdd.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BMS { + + + /// + /// BookAdd class. diff --git a/Backup/BookAdd.aspx.resx b/Backup/BookAdd.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/BookAdd.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/BookClassify.aspx b/Backup/BookClassify.aspx new file mode 100644 index 0000000..0c3c0f2 --- /dev/null +++ b/Backup/BookClassify.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BookClassify.aspx.cs" AutoEventWireup="True" Inherits="LMS.BookClassify" %> + + + + BookClassify + + + + + + + +
+ +
diff --git a/Backup/BookClassify.aspx.cs b/Backup/BookClassify.aspx.cs new file mode 100644 index 0000000..57b485a --- /dev/null +++ b/Backup/BookClassify.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; + +namespace LMS +{ + /// + /// BookClassify ��ժҪ˵���� diff --git a/Backup/BookClassify.aspx.designer.cs b/Backup/BookClassify.aspx.designer.cs new file mode 100644 index 0000000..1b973e6 --- /dev/null +++ b/Backup/BookClassify.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// BookClassify class. diff --git a/Backup/BookClassify.aspx.resx b/Backup/BookClassify.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/BookClassify.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/BookDetail.aspx b/Backup/BookDetail.aspx new file mode 100644 index 0000000..f63d941 --- /dev/null +++ b/Backup/BookDetail.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BookDetail.aspx.cs" AutoEventWireup="True" Inherits="LMS.BookDetail" %> + + + + BookDetail + + + + + + + + + + diff --git a/Backup/BookDetail.aspx.cs b/Backup/BookDetail.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/Backup/BookDetail.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/Backup/BookDetail.aspx.designer.cs b/Backup/BookDetail.aspx.designer.cs new file mode 100644 index 0000000..a0ddd31 --- /dev/null +++ b/Backup/BookDetail.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// BookDetail class. diff --git a/Backup/BookDetail.aspx.resx b/Backup/BookDetail.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/BookDetail.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/BookManage.aspx b/Backup/BookManage.aspx new file mode 100644 index 0000000..7c0819d --- /dev/null +++ b/Backup/BookManage.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BookManage.aspx.cs" AutoEventWireup="True" Inherits="BMS.BookManage" %> + + + + BookManage + + + + + + + + +
+ diff --git a/Backup/BookManage.aspx.cs b/Backup/BookManage.aspx.cs new file mode 100644 index 0000000..07a1d92 --- /dev/null +++ b/Backup/BookManage.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace BMS +{ diff --git a/Backup/BookManage.aspx.designer.cs b/Backup/BookManage.aspx.designer.cs new file mode 100644 index 0000000..8c58946 --- /dev/null +++ b/Backup/BookManage.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BMS { + + + /// + /// BookManage class. diff --git a/Backup/BookManage.aspx.resx b/Backup/BookManage.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/BookManage.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/BookModify.aspx b/Backup/BookModify.aspx new file mode 100644 index 0000000..c9d966d --- /dev/null +++ b/Backup/BookModify.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BookModify.aspx.cs" AutoEventWireup="True" Inherits="BMS.BookModify" %> + + + + BookAdd + + + + + + + + +
+ diff --git a/Backup/BookModify.aspx.cs b/Backup/BookModify.aspx.cs new file mode 100644 index 0000000..eff66c4 --- /dev/null +++ b/Backup/BookModify.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; +namespace BMS +{ + //��Դ��������www.51aspx.com(���������������) diff --git a/Backup/BookModify.aspx.designer.cs b/Backup/BookModify.aspx.designer.cs new file mode 100644 index 0000000..fe4aefb --- /dev/null +++ b/Backup/BookModify.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BMS { + + + /// + /// BookModify class. diff --git a/Backup/BookModify.aspx.resx b/Backup/BookModify.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/BookModify.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/BookSearch.aspx b/Backup/BookSearch.aspx new file mode 100644 index 0000000..9b158b5 --- /dev/null +++ b/Backup/BookSearch.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BookSearch.aspx.cs" AutoEventWireup="True" Inherits="LMS.BookSearch" %> + + + + BookSearch + + + + + + + +
+ +
diff --git a/Backup/BookSearch.aspx.cs b/Backup/BookSearch.aspx.cs new file mode 100644 index 0000000..57cac8d --- /dev/null +++ b/Backup/BookSearch.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; + +namespace LMS +{ + /// + /// BookSearch ��ժҪ˵���� diff --git a/Backup/BookSearch.aspx.designer.cs b/Backup/BookSearch.aspx.designer.cs new file mode 100644 index 0000000..be07140 --- /dev/null +++ b/Backup/BookSearch.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// BookSearch class. diff --git a/Backup/BookSearch.aspx.resx b/Backup/BookSearch.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/BookSearch.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/BookSearchResult.aspx b/Backup/BookSearchResult.aspx new file mode 100644 index 0000000..46d74eb --- /dev/null +++ b/Backup/BookSearchResult.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BookSearchResult.aspx.cs" AutoEventWireup="True" Inherits="LMS.BookSearchResult" %> + + + + BookSearchResult + + + + + + + + + +
diff --git a/Backup/BookSearchResult.aspx.cs b/Backup/BookSearchResult.aspx.cs new file mode 100644 index 0000000..2b19134 --- /dev/null +++ b/Backup/BookSearchResult.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data.SqlClient ; + +namespace LMS +{ diff --git a/Backup/BookSearchResult.aspx.designer.cs b/Backup/BookSearchResult.aspx.designer.cs new file mode 100644 index 0000000..32eeeb4 --- /dev/null +++ b/Backup/BookSearchResult.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// BookSearchResult class. diff --git a/Backup/BookSearchResult.aspx.resx b/Backup/BookSearchResult.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/BookSearchResult.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/BorrowCheckIn.aspx b/Backup/BorrowCheckIn.aspx new file mode 100644 index 0000000..6dcf482 --- /dev/null +++ b/Backup/BorrowCheckIn.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BorrowCheckIn.aspx.cs" AutoEventWireup="True" Inherits="LMS.BorrowCheckIn" %> + + + + BorrowCheckIn + + + + + + + + + + diff --git a/Backup/BorrowCheckIn.aspx.cs b/Backup/BorrowCheckIn.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/Backup/BorrowCheckIn.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/Backup/BorrowCheckIn.aspx.designer.cs b/Backup/BorrowCheckIn.aspx.designer.cs new file mode 100644 index 0000000..f64f2eb --- /dev/null +++ b/Backup/BorrowCheckIn.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// BorrowCheckIn class. diff --git a/Backup/BorrowCheckIn.aspx.resx b/Backup/BorrowCheckIn.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/BorrowCheckIn.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/Default.aspx b/Backup/Default.aspx new file mode 100644 index 0000000..b34fff9 --- /dev/null +++ b/Backup/Default.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="LMS.Default" %> + + + + + + ͼ��ݹ���ϵͳ |-51aspx.com + + + +
+ +
+ + diff --git a/Backup/Default.aspx.cs b/Backup/Default.aspx.cs new file mode 100644 index 0000000..82e0055 --- /dev/null +++ b/Backup/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; + +namespace LMS +//��Դ��������www.51aspx.com(���������������) + +{ diff --git a/Backup/Default.aspx.designer.cs b/Backup/Default.aspx.designer.cs new file mode 100644 index 0000000..0eade70 --- /dev/null +++ b/Backup/Default.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// Default class. diff --git a/Backup/Global.asax b/Backup/Global.asax new file mode 100644 index 0000000..fc958aa --- /dev/null +++ b/Backup/Global.asax @@ -0,0 +1 @@ +<%@ Application Codebehind="Global.asax.cs" Inherits="LMS.Global" %> diff --git a/Backup/Global.asax.cs b/Backup/Global.asax.cs new file mode 100644 index 0000000..2acb7d2 --- /dev/null +++ b/Backup/Global.asax.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Web; +using System.Web.SessionState; + +namespace LMS +{ + /// + /// Global ��ժҪ˵���� + /// + public class Global : System.Web.HttpApplication + { + public Global() + { diff --git a/Backup/Global.asax.resx b/Backup/Global.asax.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/Global.asax.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/LMS.csproj b/Backup/LMS.csproj new file mode 100644 index 0000000..aa4b3b7 --- /dev/null +++ b/Backup/LMS.csproj @@ -0,0 +1,15 @@ + + + 8.0.50727 + 2.0 + {0EC3ADCB-70CD-443E-82FB-EE019A1C6E51} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Debug + AnyCPU + + + + + LMS + + diff --git a/Backup/LibManage.aspx b/Backup/LibManage.aspx new file mode 100644 index 0000000..e8cd2b8 --- /dev/null +++ b/Backup/LibManage.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="LibManage.aspx.cs" AutoEventWireup="True" Inherits="LMS.LibManage" %> + + + + LibManage + + + + + + +
+
+ +
diff --git a/Backup/LibManage.aspx.cs b/Backup/LibManage.aspx.cs new file mode 100644 index 0000000..263058c --- /dev/null +++ b/Backup/LibManage.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + + +namespace LMS diff --git a/Backup/LibManage.aspx.designer.cs b/Backup/LibManage.aspx.designer.cs new file mode 100644 index 0000000..10be07d --- /dev/null +++ b/Backup/LibManage.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// LibManage class. diff --git a/Backup/LibManage.aspx.resx b/Backup/LibManage.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/LibManage.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/NewBookSearch.aspx b/Backup/NewBookSearch.aspx new file mode 100644 index 0000000..fefa8e8 --- /dev/null +++ b/Backup/NewBookSearch.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="NewBookSearch.aspx.cs" AutoEventWireup="True" Inherits="LMS.NewBookSearch" %> + + + + NewBookSearch + + + + + + + + + +
diff --git a/Backup/NewBookSearch.aspx.cs b/Backup/NewBookSearch.aspx.cs new file mode 100644 index 0000000..263058c --- /dev/null +++ b/Backup/NewBookSearch.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + + +namespace LMS diff --git a/Backup/NewBookSearch.aspx.designer.cs b/Backup/NewBookSearch.aspx.designer.cs new file mode 100644 index 0000000..557f6d0 --- /dev/null +++ b/Backup/NewBookSearch.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// NewBookSearch class. diff --git a/Backup/NewBookSearch.aspx.resx b/Backup/NewBookSearch.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/NewBookSearch.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/PasswordModify.aspx b/Backup/PasswordModify.aspx new file mode 100644 index 0000000..1aa1b01 --- /dev/null +++ b/Backup/PasswordModify.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="PasswordModify.aspx.cs" AutoEventWireup="True" Inherits="WMS.PasswordModify" %> + + + + PasswordModify + + + + + + + + + +
diff --git a/Backup/PasswordModify.aspx.cs b/Backup/PasswordModify.aspx.cs new file mode 100644 index 0000000..e97f4d2 --- /dev/null +++ b/Backup/PasswordModify.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + + +namespace WMS diff --git a/Backup/PasswordModify.aspx.designer.cs b/Backup/PasswordModify.aspx.designer.cs new file mode 100644 index 0000000..c986613 --- /dev/null +++ b/Backup/PasswordModify.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WMS { + + + /// + /// PasswordModify class. diff --git a/Backup/PasswordModify.aspx.resx b/Backup/PasswordModify.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/PasswordModify.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/PasswordModifyForAdmin.aspx b/Backup/PasswordModifyForAdmin.aspx new file mode 100644 index 0000000..215f668 --- /dev/null +++ b/Backup/PasswordModifyForAdmin.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="PasswordModifyForAdmin.aspx.cs" AutoEventWireup="True" Inherits="LMS.PasswordModifyForAdmin" %> + + + + PasswordModifyForAdmin + + + + + + + + + +
diff --git a/Backup/PasswordModifyForAdmin.aspx.cs b/Backup/PasswordModifyForAdmin.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/Backup/PasswordModifyForAdmin.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/Backup/PasswordModifyForAdmin.aspx.designer.cs b/Backup/PasswordModifyForAdmin.aspx.designer.cs new file mode 100644 index 0000000..cbcbee1 --- /dev/null +++ b/Backup/PasswordModifyForAdmin.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// PasswordModifyForAdmin class. diff --git a/Backup/PasswordModifyForAdmin.aspx.resx b/Backup/PasswordModifyForAdmin.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/PasswordModifyForAdmin.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/ReaderBorrowHis.aspx b/Backup/ReaderBorrowHis.aspx new file mode 100644 index 0000000..085691b --- /dev/null +++ b/Backup/ReaderBorrowHis.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="ReaderBorrowHis.aspx.cs" AutoEventWireup="True" Inherits="LMS.ReaderBorrowHis" %> + + + + ReaderBorrowHis + + + + + + + + + + diff --git a/Backup/ReaderBorrowHis.aspx.cs b/Backup/ReaderBorrowHis.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/Backup/ReaderBorrowHis.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/Backup/ReaderBorrowHis.aspx.designer.cs b/Backup/ReaderBorrowHis.aspx.designer.cs new file mode 100644 index 0000000..84cbda3 --- /dev/null +++ b/Backup/ReaderBorrowHis.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// ReaderBorrowHis class. diff --git a/Backup/ReaderBorrowHis.aspx.resx b/Backup/ReaderBorrowHis.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/ReaderBorrowHis.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/ReaderBorrowState.aspx b/Backup/ReaderBorrowState.aspx new file mode 100644 index 0000000..4ce8cff --- /dev/null +++ b/Backup/ReaderBorrowState.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="ReaderBorrowState.aspx.cs" AutoEventWireup="True" Inherits="LMS.ReaderBorrowState" %> + + + + ReaderBorrowState + + + + + + + +
+ +
diff --git a/Backup/ReaderBorrowState.aspx.cs b/Backup/ReaderBorrowState.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/Backup/ReaderBorrowState.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/Backup/ReaderBorrowState.aspx.designer.cs b/Backup/ReaderBorrowState.aspx.designer.cs new file mode 100644 index 0000000..6459444 --- /dev/null +++ b/Backup/ReaderBorrowState.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// ReaderBorrowState class. diff --git a/Backup/ReaderBorrowState.aspx.resx b/Backup/ReaderBorrowState.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/ReaderBorrowState.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/ReaderDetail.aspx b/Backup/ReaderDetail.aspx new file mode 100644 index 0000000..a3223f8 --- /dev/null +++ b/Backup/ReaderDetail.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="ReaderDetail.aspx.cs" AutoEventWireup="True" Inherits="LMS.ReaderDetail" %> + + + + ReaderDetail + + + + + + + + + + diff --git a/Backup/ReaderDetail.aspx.cs b/Backup/ReaderDetail.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/Backup/ReaderDetail.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/Backup/ReaderDetail.aspx.designer.cs b/Backup/ReaderDetail.aspx.designer.cs new file mode 100644 index 0000000..2426544 --- /dev/null +++ b/Backup/ReaderDetail.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// ReaderDetail class. diff --git a/Backup/ReaderDetail.aspx.resx b/Backup/ReaderDetail.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/ReaderDetail.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/ReaderExpireBook.aspx b/Backup/ReaderExpireBook.aspx new file mode 100644 index 0000000..4ec1b90 --- /dev/null +++ b/Backup/ReaderExpireBook.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="ReaderExpireBook.aspx.cs" AutoEventWireup="True" Inherits="LMS.ReaderExpireBook" %> + + + + ReaderExpireBook + + + + + + + +
+ + diff --git a/Backup/ReaderExpireBook.aspx.cs b/Backup/ReaderExpireBook.aspx.cs new file mode 100644 index 0000000..263058c --- /dev/null +++ b/Backup/ReaderExpireBook.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + + +namespace LMS diff --git a/Backup/ReaderExpireBook.aspx.designer.cs b/Backup/ReaderExpireBook.aspx.designer.cs new file mode 100644 index 0000000..7c30e0e --- /dev/null +++ b/Backup/ReaderExpireBook.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// ReaderExpireBook class. diff --git a/Backup/ReaderExpireBook.aspx.resx b/Backup/ReaderExpireBook.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/ReaderExpireBook.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/ReaderSearch.aspx b/Backup/ReaderSearch.aspx new file mode 100644 index 0000000..96efc17 --- /dev/null +++ b/Backup/ReaderSearch.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="ReaderSearch.aspx.cs" AutoEventWireup="True" Inherits="LMS.ReaderSearch" %> + + + + ReaderSearch + + + + + + + +
+ +
diff --git a/Backup/ReaderSearch.aspx.cs b/Backup/ReaderSearch.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/Backup/ReaderSearch.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/Backup/ReaderSearch.aspx.designer.cs b/Backup/ReaderSearch.aspx.designer.cs new file mode 100644 index 0000000..0584cbb --- /dev/null +++ b/Backup/ReaderSearch.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// ReaderSearch class. diff --git a/Backup/ReaderSearch.aspx.resx b/Backup/ReaderSearch.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/ReaderSearch.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/ReturnCheckIn.aspx b/Backup/ReturnCheckIn.aspx new file mode 100644 index 0000000..a4091d0 --- /dev/null +++ b/Backup/ReturnCheckIn.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="ReturnCheckIn.aspx.cs" AutoEventWireup="True" Inherits="LMS.ReturnChechIn" %> + + + + ReturnChechIn + + + + + + + + + + diff --git a/Backup/ReturnCheckIn.aspx.cs b/Backup/ReturnCheckIn.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/Backup/ReturnCheckIn.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/Backup/ReturnCheckIn.aspx.designer.cs b/Backup/ReturnCheckIn.aspx.designer.cs new file mode 100644 index 0000000..be66280 --- /dev/null +++ b/Backup/ReturnCheckIn.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// ReturnChechIn class. diff --git a/Backup/ReturnCheckIn.aspx.resx b/Backup/ReturnCheckIn.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/ReturnCheckIn.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/UserAdd.aspx b/Backup/UserAdd.aspx new file mode 100644 index 0000000..d44f24d --- /dev/null +++ b/Backup/UserAdd.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="UserAdd.aspx.cs" AutoEventWireup="True" Inherits="WMS.UserAdd" %> + + + + UserAdd + + + + + + + +
+ +
diff --git a/Backup/UserAdd.aspx.cs b/Backup/UserAdd.aspx.cs new file mode 100644 index 0000000..3f022d1 --- /dev/null +++ b/Backup/UserAdd.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace WMS +{ diff --git a/Backup/UserAdd.aspx.designer.cs b/Backup/UserAdd.aspx.designer.cs new file mode 100644 index 0000000..5baf3c2 --- /dev/null +++ b/Backup/UserAdd.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WMS { + + + /// + /// UserAdd class. diff --git a/Backup/UserAdd.aspx.resx b/Backup/UserAdd.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/UserAdd.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/UserManage.aspx b/Backup/UserManage.aspx new file mode 100644 index 0000000..a507a00 --- /dev/null +++ b/Backup/UserManage.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="UserManage.aspx.cs" AutoEventWireup="True" Inherits="WMS.UserManage" %> + + + + UserManage + + + + + + + + + +
diff --git a/Backup/UserManage.aspx.cs b/Backup/UserManage.aspx.cs new file mode 100644 index 0000000..3f022d1 --- /dev/null +++ b/Backup/UserManage.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace WMS +{ diff --git a/Backup/UserManage.aspx.designer.cs b/Backup/UserManage.aspx.designer.cs new file mode 100644 index 0000000..f25064f --- /dev/null +++ b/Backup/UserManage.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WMS { + + + /// + /// UserManage class. diff --git a/Backup/UserManage.aspx.resx b/Backup/UserManage.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/UserManage.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/UserModify.aspx b/Backup/UserModify.aspx new file mode 100644 index 0000000..d0400a6 --- /dev/null +++ b/Backup/UserModify.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="UserModify.aspx.cs" AutoEventWireup="True" Inherits="WMS.UserModify" %> + + + + UserModify + + + + + + + + + +
diff --git a/Backup/UserModify.aspx.cs b/Backup/UserModify.aspx.cs new file mode 100644 index 0000000..3f022d1 --- /dev/null +++ b/Backup/UserModify.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace WMS +{ diff --git a/Backup/UserModify.aspx.designer.cs b/Backup/UserModify.aspx.designer.cs new file mode 100644 index 0000000..e4df50f --- /dev/null +++ b/Backup/UserModify.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WMS { + + + /// + /// UserModify class. diff --git a/Backup/UserModify.aspx.resx b/Backup/UserModify.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Backup/UserModify.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Backup/Web.config b/Backup/Web.config new file mode 100644 index 0000000..2c47dd5 --- /dev/null +++ b/Backup/Web.config @@ -0,0 +1,15 @@ + + + + + + + diff --git a/BookAdd.aspx b/BookAdd.aspx new file mode 100644 index 0000000..61b5f79 --- /dev/null +++ b/BookAdd.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BookAdd.aspx.cs" AutoEventWireup="True" Inherits="BMS.BookAdd" %> + + + + BookAdd + + + + + + + + + + diff --git a/BookAdd.aspx.cs b/BookAdd.aspx.cs new file mode 100644 index 0000000..07a1d92 --- /dev/null +++ b/BookAdd.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace BMS +{ diff --git a/BookAdd.aspx.designer.cs b/BookAdd.aspx.designer.cs new file mode 100644 index 0000000..d674b56 --- /dev/null +++ b/BookAdd.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BMS { + + + /// + /// BookAdd class. diff --git a/BookAdd.aspx.resx b/BookAdd.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/BookAdd.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/BookClassify.aspx b/BookClassify.aspx new file mode 100644 index 0000000..0c3c0f2 --- /dev/null +++ b/BookClassify.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BookClassify.aspx.cs" AutoEventWireup="True" Inherits="LMS.BookClassify" %> + + + + BookClassify + + + + + + + +
+ +
diff --git a/BookClassify.aspx.cs b/BookClassify.aspx.cs new file mode 100644 index 0000000..57b485a --- /dev/null +++ b/BookClassify.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; + +namespace LMS +{ + /// + /// BookClassify ��ժҪ˵���� diff --git a/BookClassify.aspx.designer.cs b/BookClassify.aspx.designer.cs new file mode 100644 index 0000000..1b973e6 --- /dev/null +++ b/BookClassify.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// BookClassify class. diff --git a/BookClassify.aspx.resx b/BookClassify.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/BookClassify.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/BookDetail.aspx b/BookDetail.aspx new file mode 100644 index 0000000..f63d941 --- /dev/null +++ b/BookDetail.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BookDetail.aspx.cs" AutoEventWireup="True" Inherits="LMS.BookDetail" %> + + + + BookDetail + + + + + + + + + + diff --git a/BookDetail.aspx.cs b/BookDetail.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/BookDetail.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/BookDetail.aspx.designer.cs b/BookDetail.aspx.designer.cs new file mode 100644 index 0000000..a0ddd31 --- /dev/null +++ b/BookDetail.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// BookDetail class. diff --git a/BookDetail.aspx.resx b/BookDetail.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/BookDetail.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/BookManage.aspx b/BookManage.aspx new file mode 100644 index 0000000..7c0819d --- /dev/null +++ b/BookManage.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BookManage.aspx.cs" AutoEventWireup="True" Inherits="BMS.BookManage" %> + + + + BookManage + + + + + + + + +
+ diff --git a/BookManage.aspx.cs b/BookManage.aspx.cs new file mode 100644 index 0000000..07a1d92 --- /dev/null +++ b/BookManage.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace BMS +{ diff --git a/BookManage.aspx.designer.cs b/BookManage.aspx.designer.cs new file mode 100644 index 0000000..8c58946 --- /dev/null +++ b/BookManage.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BMS { + + + /// + /// BookManage class. diff --git a/BookManage.aspx.resx b/BookManage.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/BookManage.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/BookModify.aspx b/BookModify.aspx new file mode 100644 index 0000000..c9d966d --- /dev/null +++ b/BookModify.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BookModify.aspx.cs" AutoEventWireup="True" Inherits="BMS.BookModify" %> + + + + BookAdd + + + + + + + + +
+ diff --git a/BookModify.aspx.cs b/BookModify.aspx.cs new file mode 100644 index 0000000..eff66c4 --- /dev/null +++ b/BookModify.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; +namespace BMS +{ + //��Դ��������www.51aspx.com(���������������) diff --git a/BookModify.aspx.designer.cs b/BookModify.aspx.designer.cs new file mode 100644 index 0000000..fe4aefb --- /dev/null +++ b/BookModify.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace BMS { + + + /// + /// BookModify class. diff --git a/BookModify.aspx.resx b/BookModify.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/BookModify.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/BookSearch.aspx b/BookSearch.aspx new file mode 100644 index 0000000..9b158b5 --- /dev/null +++ b/BookSearch.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BookSearch.aspx.cs" AutoEventWireup="True" Inherits="LMS.BookSearch" %> + + + + BookSearch + + + + + + + +
+ +
diff --git a/BookSearch.aspx.cs b/BookSearch.aspx.cs new file mode 100644 index 0000000..57cac8d --- /dev/null +++ b/BookSearch.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; + +namespace LMS +{ + /// + /// BookSearch ��ժҪ˵���� diff --git a/BookSearch.aspx.designer.cs b/BookSearch.aspx.designer.cs new file mode 100644 index 0000000..be07140 --- /dev/null +++ b/BookSearch.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// BookSearch class. diff --git a/BookSearch.aspx.resx b/BookSearch.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/BookSearch.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/BookSearchResult.aspx b/BookSearchResult.aspx new file mode 100644 index 0000000..46d74eb --- /dev/null +++ b/BookSearchResult.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BookSearchResult.aspx.cs" AutoEventWireup="True" Inherits="LMS.BookSearchResult" %> + + + + BookSearchResult + + + + + + + + + +
diff --git a/BookSearchResult.aspx.cs b/BookSearchResult.aspx.cs new file mode 100644 index 0000000..2b19134 --- /dev/null +++ b/BookSearchResult.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data.SqlClient ; + +namespace LMS +{ diff --git a/BookSearchResult.aspx.designer.cs b/BookSearchResult.aspx.designer.cs new file mode 100644 index 0000000..32eeeb4 --- /dev/null +++ b/BookSearchResult.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// BookSearchResult class. diff --git a/BookSearchResult.aspx.resx b/BookSearchResult.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/BookSearchResult.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/BorrowCheckIn.aspx b/BorrowCheckIn.aspx new file mode 100644 index 0000000..6dcf482 --- /dev/null +++ b/BorrowCheckIn.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="BorrowCheckIn.aspx.cs" AutoEventWireup="True" Inherits="LMS.BorrowCheckIn" %> + + + + BorrowCheckIn + + + + + + + + + + diff --git a/BorrowCheckIn.aspx.cs b/BorrowCheckIn.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/BorrowCheckIn.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/BorrowCheckIn.aspx.designer.cs b/BorrowCheckIn.aspx.designer.cs new file mode 100644 index 0000000..f64f2eb --- /dev/null +++ b/BorrowCheckIn.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// BorrowCheckIn class. diff --git a/BorrowCheckIn.aspx.resx b/BorrowCheckIn.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/BorrowCheckIn.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Default.aspx b/Default.aspx new file mode 100644 index 0000000..b34fff9 --- /dev/null +++ b/Default.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="LMS.Default" %> + + + + + + ͼ��ݹ���ϵͳ |-51aspx.com + + + +
+ +
+ + diff --git a/Default.aspx.cs b/Default.aspx.cs new file mode 100644 index 0000000..82e0055 --- /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; + +namespace LMS +//��Դ��������www.51aspx.com(���������������) + +{ diff --git a/Default.aspx.designer.cs b/Default.aspx.designer.cs new file mode 100644 index 0000000..0eade70 --- /dev/null +++ b/Default.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// Default class. diff --git a/Global.asax b/Global.asax new file mode 100644 index 0000000..fc958aa --- /dev/null +++ b/Global.asax @@ -0,0 +1 @@ +<%@ Application Codebehind="Global.asax.cs" Inherits="LMS.Global" %> diff --git a/Global.asax.cs b/Global.asax.cs new file mode 100644 index 0000000..2acb7d2 --- /dev/null +++ b/Global.asax.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Web; +using System.Web.SessionState; + +namespace LMS +{ + /// + /// Global ��ժҪ˵���� + /// + public class Global : System.Web.HttpApplication + { + public Global() + { diff --git a/Global.asax.resx b/Global.asax.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/Global.asax.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/LMS.csproj b/LMS.csproj new file mode 100644 index 0000000..7ccd0fb --- /dev/null +++ b/LMS.csproj @@ -0,0 +1,15 @@ + + + + 8.0.50727 + 2.0 + {0EC3ADCB-70CD-443E-82FB-EE019A1C6E51} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Debug + AnyCPU + + + + + LMS + diff --git a/LibManage.aspx b/LibManage.aspx new file mode 100644 index 0000000..e8cd2b8 --- /dev/null +++ b/LibManage.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="LibManage.aspx.cs" AutoEventWireup="True" Inherits="LMS.LibManage" %> + + + + LibManage + + + + + + +
+
+ +
diff --git a/LibManage.aspx.cs b/LibManage.aspx.cs new file mode 100644 index 0000000..263058c --- /dev/null +++ b/LibManage.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + + +namespace LMS diff --git a/LibManage.aspx.designer.cs b/LibManage.aspx.designer.cs new file mode 100644 index 0000000..10be07d --- /dev/null +++ b/LibManage.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// LibManage class. diff --git a/LibManage.aspx.resx b/LibManage.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/LibManage.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/NewBookSearch.aspx b/NewBookSearch.aspx new file mode 100644 index 0000000..fefa8e8 --- /dev/null +++ b/NewBookSearch.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="NewBookSearch.aspx.cs" AutoEventWireup="True" Inherits="LMS.NewBookSearch" %> + + + + NewBookSearch + + + + + + + + + +
diff --git a/NewBookSearch.aspx.cs b/NewBookSearch.aspx.cs new file mode 100644 index 0000000..263058c --- /dev/null +++ b/NewBookSearch.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + + +namespace LMS diff --git a/NewBookSearch.aspx.designer.cs b/NewBookSearch.aspx.designer.cs new file mode 100644 index 0000000..557f6d0 --- /dev/null +++ b/NewBookSearch.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// NewBookSearch class. diff --git a/NewBookSearch.aspx.resx b/NewBookSearch.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/NewBookSearch.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/PasswordModify.aspx b/PasswordModify.aspx new file mode 100644 index 0000000..1aa1b01 --- /dev/null +++ b/PasswordModify.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="PasswordModify.aspx.cs" AutoEventWireup="True" Inherits="WMS.PasswordModify" %> + + + + PasswordModify + + + + + + + + + +
diff --git a/PasswordModify.aspx.cs b/PasswordModify.aspx.cs new file mode 100644 index 0000000..e97f4d2 --- /dev/null +++ b/PasswordModify.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + + +namespace WMS diff --git a/PasswordModify.aspx.designer.cs b/PasswordModify.aspx.designer.cs new file mode 100644 index 0000000..c986613 --- /dev/null +++ b/PasswordModify.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WMS { + + + /// + /// PasswordModify class. diff --git a/PasswordModify.aspx.resx b/PasswordModify.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/PasswordModify.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/PasswordModifyForAdmin.aspx b/PasswordModifyForAdmin.aspx new file mode 100644 index 0000000..215f668 --- /dev/null +++ b/PasswordModifyForAdmin.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="PasswordModifyForAdmin.aspx.cs" AutoEventWireup="True" Inherits="LMS.PasswordModifyForAdmin" %> + + + + PasswordModifyForAdmin + + + + + + + + + +
diff --git a/PasswordModifyForAdmin.aspx.cs b/PasswordModifyForAdmin.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/PasswordModifyForAdmin.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/PasswordModifyForAdmin.aspx.designer.cs b/PasswordModifyForAdmin.aspx.designer.cs new file mode 100644 index 0000000..cbcbee1 --- /dev/null +++ b/PasswordModifyForAdmin.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// PasswordModifyForAdmin class. diff --git a/PasswordModifyForAdmin.aspx.resx b/PasswordModifyForAdmin.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/PasswordModifyForAdmin.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/ReaderBorrowHis.aspx b/ReaderBorrowHis.aspx new file mode 100644 index 0000000..085691b --- /dev/null +++ b/ReaderBorrowHis.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="ReaderBorrowHis.aspx.cs" AutoEventWireup="True" Inherits="LMS.ReaderBorrowHis" %> + + + + ReaderBorrowHis + + + + + + + + + + diff --git a/ReaderBorrowHis.aspx.cs b/ReaderBorrowHis.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/ReaderBorrowHis.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/ReaderBorrowHis.aspx.designer.cs b/ReaderBorrowHis.aspx.designer.cs new file mode 100644 index 0000000..84cbda3 --- /dev/null +++ b/ReaderBorrowHis.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// ReaderBorrowHis class. diff --git a/ReaderBorrowHis.aspx.resx b/ReaderBorrowHis.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/ReaderBorrowHis.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/ReaderBorrowState.aspx b/ReaderBorrowState.aspx new file mode 100644 index 0000000..4ce8cff --- /dev/null +++ b/ReaderBorrowState.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="ReaderBorrowState.aspx.cs" AutoEventWireup="True" Inherits="LMS.ReaderBorrowState" %> + + + + ReaderBorrowState + + + + + + + +
+ +
diff --git a/ReaderBorrowState.aspx.cs b/ReaderBorrowState.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/ReaderBorrowState.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/ReaderBorrowState.aspx.designer.cs b/ReaderBorrowState.aspx.designer.cs new file mode 100644 index 0000000..6459444 --- /dev/null +++ b/ReaderBorrowState.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// ReaderBorrowState class. diff --git a/ReaderBorrowState.aspx.resx b/ReaderBorrowState.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/ReaderBorrowState.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/ReaderDetail.aspx b/ReaderDetail.aspx new file mode 100644 index 0000000..a3223f8 --- /dev/null +++ b/ReaderDetail.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="ReaderDetail.aspx.cs" AutoEventWireup="True" Inherits="LMS.ReaderDetail" %> + + + + ReaderDetail + + + + + + + + + + diff --git a/ReaderDetail.aspx.cs b/ReaderDetail.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/ReaderDetail.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/ReaderDetail.aspx.designer.cs b/ReaderDetail.aspx.designer.cs new file mode 100644 index 0000000..2426544 --- /dev/null +++ b/ReaderDetail.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// ReaderDetail class. diff --git a/ReaderDetail.aspx.resx b/ReaderDetail.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/ReaderDetail.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/ReaderExpireBook.aspx b/ReaderExpireBook.aspx new file mode 100644 index 0000000..4ec1b90 --- /dev/null +++ b/ReaderExpireBook.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="ReaderExpireBook.aspx.cs" AutoEventWireup="True" Inherits="LMS.ReaderExpireBook" %> + + + + ReaderExpireBook + + + + + + + +
+ + diff --git a/ReaderExpireBook.aspx.cs b/ReaderExpireBook.aspx.cs new file mode 100644 index 0000000..263058c --- /dev/null +++ b/ReaderExpireBook.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + + +namespace LMS diff --git a/ReaderExpireBook.aspx.designer.cs b/ReaderExpireBook.aspx.designer.cs new file mode 100644 index 0000000..7c30e0e --- /dev/null +++ b/ReaderExpireBook.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// ReaderExpireBook class. diff --git a/ReaderExpireBook.aspx.resx b/ReaderExpireBook.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/ReaderExpireBook.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/ReaderSearch.aspx b/ReaderSearch.aspx new file mode 100644 index 0000000..96efc17 --- /dev/null +++ b/ReaderSearch.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="ReaderSearch.aspx.cs" AutoEventWireup="True" Inherits="LMS.ReaderSearch" %> + + + + ReaderSearch + + + + + + + +
+ +
diff --git a/ReaderSearch.aspx.cs b/ReaderSearch.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/ReaderSearch.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/ReaderSearch.aspx.designer.cs b/ReaderSearch.aspx.designer.cs new file mode 100644 index 0000000..0584cbb --- /dev/null +++ b/ReaderSearch.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// ReaderSearch class. diff --git a/ReaderSearch.aspx.resx b/ReaderSearch.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/ReaderSearch.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/ReturnCheckIn.aspx b/ReturnCheckIn.aspx new file mode 100644 index 0000000..a4091d0 --- /dev/null +++ b/ReturnCheckIn.aspx @@ -0,0 +1,15 @@ +<%@ Page language="c#" Codebehind="ReturnCheckIn.aspx.cs" AutoEventWireup="True" Inherits="LMS.ReturnChechIn" %> + + + + ReturnChechIn + + + + + + + + + + diff --git a/ReturnCheckIn.aspx.cs b/ReturnCheckIn.aspx.cs new file mode 100644 index 0000000..efa7503 --- /dev/null +++ b/ReturnCheckIn.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.Configuration ; +using System.Data .SqlClient ; + +namespace LMS +{ diff --git a/ReturnCheckIn.aspx.designer.cs b/ReturnCheckIn.aspx.designer.cs new file mode 100644 index 0000000..be66280 --- /dev/null +++ b/ReturnCheckIn.aspx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.42 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace LMS { + + + /// + /// ReturnChechIn class. diff --git a/ReturnCheckIn.aspx.resx b/ReturnCheckIn.aspx.resx new file mode 100644 index 0000000..a76fe8d --- /dev/null +++ b/ReturnCheckIn.aspx.resx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/UpgradeLog.htm b/UpgradeLog.htm new file mode 100644 index 0000000..38421f0 --- /dev/null +++ b/UpgradeLog.htm @@ -0,0 +1,15 @@ + + + + Migration Report +