实例介绍
基于c#实现的图书管理系统,实现增删改查,对是我学习c#来练练手的,c#基础入门的学生可以考虑参考,
【实例截图】
【核心代码】
112
└── q3
└── 12
└── 课终参考程序MySchool
├── ASP.NET图书管理系统源码
│ ├── about.aspx
│ ├── about.aspx.cs
│ ├── addBook.aspx
│ ├── addBook.aspx.cs
│ ├── addborrow.aspx
│ ├── addborrow.aspx.cs
│ ├── addstudent.aspx
│ ├── addstudent.aspx.cs
│ ├── App_Data
│ │ ├── aspnetdb_log.ldf
│ │ └── ASPNETDB.MDF
│ ├── ASP.net.sln
│ ├── ASP.net.suo
│ ├── blogroll.aspx
│ ├── blogroll.aspx.cs
│ ├── Book1.aspx
│ ├── Book1.aspx.cs
│ ├── book.mdb
│ ├── borrowinformation1.aspx
│ ├── borrowinformation1.aspx.cs
│ ├── BorrowInformation.mdb
│ ├── Default.aspx
│ ├── Default.aspx.cs
│ ├── exit.aspx
│ ├── exit.aspx.cs
│ ├── image
│ │ ├── 0170010195.jpg
│ │ ├── 0170050225.jpg
│ │ ├── 1320326061 (1).jpg
│ │ ├── 20081119131738365_2.jpg
│ │ ├── 4.jpg
│ │ ├── 5881601_113734047993_2.jpg
│ │ ├── 82b1OOOPICf0.jpg
│ │ ├── jianyue_dafang_xiangkuang-076.jpg
│ │ ├── t0110f74483d3ea9b77.gif
│ │ ├── t0126649a3f68ada71b.gif
│ │ ├── t01967675d274411248.gif
│ │ ├── t019fbd272044714bed.gif
│ │ ├── t01a16a2167ad336802.jpg
│ │ ├── t01ab0b56e2697bf2df.jpg
│ │ ├── t01d294e1f8b4308c97.gif
│ │ └── t01d86f6e4959709faa.gif
│ ├── login1.aspx
│ ├── login1.aspx.cs
│ ├── MasterPage2.master
│ ├── MasterPage2.master.cs
│ ├── MasterPage3.master
│ ├── MasterPage3.master.cs
│ ├── MasterPage4.master
│ ├── MasterPage4.master.cs
│ ├── MasterPage5.master
│ ├── MasterPage5.master.cs
│ ├── MasterPage.master
│ ├── MasterPage.master.cs
│ ├── s1.mdb
│ ├── select1book.aspx
│ ├── select1book.aspx.cs
│ ├── selectBorrowInformation.aspx
│ ├── selectBorrowInformation.aspx.cs
│ ├── selectstudent.aspx
│ ├── selectstudent.aspx.cs
│ ├── student2.aspx
│ ├── student2.aspx.cs
│ ├── student.mdb
│ ├── Tijiao3.htm
│ ├── vote.aspx
│ ├── vote.aspx.cs
│ ├── web.config
│ └── 源码说明.txt
├── ASP.NET图书管理系统源码.zip
├── c#
│ ├── c
│ │ ├── Demo
│ │ │ ├── App.config
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Demo.exe
│ │ │ │ ├── Demo.exe.config
│ │ │ │ ├── Demo.pdb
│ │ │ │ ├── Demo.vshost.exe
│ │ │ │ ├── Demo.vshost.exe.config
│ │ │ │ └── Demo.vshost.exe.manifest
│ │ │ ├── Demo.csproj
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── Demo.csproj.FileListAbsolute.txt
│ │ │ │ ├── Demo.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Demo.exe
│ │ │ │ ├── Demo.pdb
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Demo.sln
│ │ └── Demo.v12.suo
│ ├── ConsoleApplication1
│ │ ├── ConsoleApplication1
│ │ │ ├── App.config
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── ConsoleApplication1.exe.config
│ │ │ │ ├── ConsoleApplication1.vshost.exe
│ │ │ │ ├── ConsoleApplication1.vshost.exe.config
│ │ │ │ ├── ConsoleApplication1.vshost.exe.manifest
│ │ │ │ └── lpk.dll.lnk
│ │ │ ├── ConsoleApplication1.csproj
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── ConsoleApplication1.csproj.FileListAbsolute.txt
│ │ │ │ ├── ConsoleApplication1.csprojResolveAssemblyReference.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ConsoleApplication1.sln
│ │ └── ConsoleApplication1.v12.suo
│ ├── Demo1
│ │ ├── Demo1
│ │ │ ├── App.config
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Demo1.exe
│ │ │ │ ├── Demo1.exe.config
│ │ │ │ ├── Demo1.pdb
│ │ │ │ ├── Demo1.vshost.exe
│ │ │ │ ├── Demo1.vshost.exe.config
│ │ │ │ ├── Demo1.vshost.exe.manifest
│ │ │ │ └── lpk.dll.lnk
│ │ │ ├── Demo1.csproj
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── Demo1.csproj.FileListAbsolute.txt
│ │ │ │ ├── Demo1.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Demo1.exe
│ │ │ │ ├── Demo1.pdb
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── lpk.dll.lnk
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Demo1.sln
│ │ └── Demo1.v12.suo
│ ├── Demo3
│ │ ├── Demo3
│ │ │ ├── App.config
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Demo3.exe
│ │ │ │ ├── Demo3.exe.config
│ │ │ │ ├── Demo3.pdb
│ │ │ │ ├── Demo3.vshost.exe
│ │ │ │ ├── Demo3.vshost.exe.config
│ │ │ │ ├── Demo3.vshost.exe.manifest
│ │ │ │ └── lpk.dll.lnk
│ │ │ ├── Demo3.csproj
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── Demo3.csproj.FileListAbsolute.txt
│ │ │ │ ├── Demo3.csprojResolveAssemblyReference.cache
│ │ │ │ ├── Demo3.exe
│ │ │ │ ├── Demo3.pdb
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── lpk.dll.lnk
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Demo3.sln
│ │ └── Demo3.v12.suo
│ ├── mycal2
│ │ ├── CADemo
│ │ │ ├── App.config
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── CADemo.exe
│ │ │ │ ├── CADemo.exe.config
│ │ │ │ ├── CADemo.pdb
│ │ │ │ ├── CADemo.vshost.exe
│ │ │ │ ├── CADemo.vshost.exe.config
│ │ │ │ ├── CADemo.vshost.exe.manifest
│ │ │ │ └── lpk.dll.lnk
│ │ │ ├── CADemo.csproj
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── CADemo.csproj.FileListAbsolute.txt
│ │ │ │ ├── CADemo.csprojResolveAssemblyReference.cache
│ │ │ │ ├── CADemo.exe
│ │ │ │ ├── CADemo.pdb
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── lpk.dll.lnk
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── mycal2
│ │ │ ├── App.config
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── lpk.dll.lnk
│ │ │ │ ├── mycal2.exe
│ │ │ │ ├── mycal2.exe.config
│ │ │ │ ├── mycal2.pdb
│ │ │ │ ├── mycal2.vshost.exe
│ │ │ │ ├── mycal2.vshost.exe.config
│ │ │ │ ├── mycal2.vshost.exe.manifest
│ │ │ │ ├── mycalmodal.dll
│ │ │ │ └── mycalmodal.pdb
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── mycal2.csproj
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── lpk.dll.lnk
│ │ │ │ ├── mycal2.csproj.FileListAbsolute.txt
│ │ │ │ ├── mycal2.csproj.GenerateResource.Cache
│ │ │ │ ├── mycal2.csprojResolveAssemblyReference.cache
│ │ │ │ ├── mycal2.exe
│ │ │ │ ├── mycal2.Form1.resources
│ │ │ │ ├── mycal2.pdb
│ │ │ │ ├── mycal2.Properties.Resources.resources
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── mycal2.sln
│ │ ├── mycal2.v12.suo
│ │ ├── mycal3
│ │ │ ├── Class1.cs
│ │ │ ├── mycal3.csproj
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── mycalmodal
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── mycalmodal.dll
│ │ │ │ └── mycalmodal.pdb
│ │ │ ├── Calculator.cs
│ │ │ ├── mycalmodal.csproj
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── mycalmodal.csproj.FileListAbsolute.txt
│ │ │ │ ├── mycalmodal.csprojResolveAssemblyReference.cache
│ │ │ │ ├── mycalmodal.dll
│ │ │ │ ├── mycalmodal.pdb
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── vbcal
│ │ ├── App.config
│ │ ├── Calculator.vb
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.vb
│ │ ├── My Project
│ │ │ ├── Application.Designer.vb
│ │ │ ├── Application.myapp
│ │ │ ├── AssemblyInfo.vb
│ │ │ ├── Resources.Designer.vb
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.vb
│ │ │ └── Settings.settings
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ │ └── My Project.Resources.Designer.vb.dll
│ │ └── vbcal.vbproj
│ ├── mycalmodol
│ │ ├── mycalmodol
│ │ │ ├── App.config
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── lpk.dll.lnk
│ │ │ │ ├── mycalmodol.exe.config
│ │ │ │ ├── mycalmodol.vshost.exe
│ │ │ │ ├── mycalmodol.vshost.exe.config
│ │ │ │ └── mycalmodol.vshost.exe.manifest
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── mycalmodol.csproj
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── mycalmodol.csproj.FileListAbsolute.txt
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── mycalmodol.sln
│ │ └── mycalmodol.v12.suo
│ ├── test20
│ │ ├── test20
│ │ │ ├── App.config
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── lpk.dll.lnk
│ │ │ │ ├── test20.exe
│ │ │ │ ├── test20.exe.config
│ │ │ │ ├── test20.pdb
│ │ │ │ ├── test20.vshost.exe
│ │ │ │ ├── test20.vshost.exe.config
│ │ │ │ └── test20.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── lpk.dll.lnk
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ │ ├── test20.csproj.FileListAbsolute.txt
│ │ │ │ ├── test20.csprojResolveAssemblyReference.cache
│ │ │ │ ├── test20.exe
│ │ │ │ └── test20.pdb
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── test20.csproj
│ │ ├── test20.sln
│ │ └── test20.v12.suo
│ └── test21
│ ├── test21
│ │ ├── App.config
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── lpk.dll.lnk
│ │ │ ├── test21.exe
│ │ │ ├── test21.exe.config
│ │ │ ├── test21.pdb
│ │ │ ├── test21.vshost.exe
│ │ │ ├── test21.vshost.exe.config
│ │ │ └── test21.vshost.exe.manifest
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── lpk.dll.lnk
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── test21.csproj.FileListAbsolute.txt
│ │ │ ├── test21.csprojResolveAssemblyReference.cache
│ │ │ ├── test21.exe
│ │ │ └── test21.pdb
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── test21.csproj
│ ├── test21.sln
│ └── test21.v12.suo
├── EF测试
│ └── EFRemoveManyToManyDemo
│ ├── DCommon
│ │ └── EFRemoveManyToManyDemo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ └── lpk.dll.lnk
│ │ └── obj
│ │ └── Debug
│ │ └── lpk.dll.lnk
│ ├── EFRemoveManyToManyDemo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ └── lpk.dll.lnk
│ │ └── obj
│ │ └── Debug
│ │ └── lpk.dll.lnk
│ ├── packages
│ │ └── EntityFramework.6.1.3
│ │ └── tools
│ │ └── lpk.dll.lnk
│ └── Test
│ └── bin
│ └── lpk.dll.lnk
├── MySchool
│ ├── app.config
│ ├── BBook.cs
│ ├── BBook.Designer.cs
│ ├── BBook.resx
│ ├── bin
│ │ └── Debug
│ │ ├── MySchool.exe
│ │ ├── MySchool.exe.config
│ │ ├── MySchool.pdb
│ │ ├── MySchool.vshost.exe
│ │ ├── MySchool.vshost.exe.config
│ │ └── MySchool.vshost.exe.manifest
│ ├── Book.cs
│ ├── Book.Designer.cs
│ ├── Book.resx
│ ├── book管理系统.csproj
│ ├── Jieyue.cs
│ ├── jieyue.Designer.cs
│ ├── jieyue.resx
│ ├── Login.cs
│ ├── Login.Designer.cs
│ ├── Login.resx
│ ├── MainFrm.cs
│ ├── MainFrm.Designer.cs
│ ├── MainFrm.resx
│ ├── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── book管理系统.csproj.FileListAbsolute.txt
│ │ ├── book管理系统.csproj.GenerateResource.Cache
│ │ ├── book管理系统.csprojResolveAssemblyReference.cache
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── MySchool.AboutForm.resources
│ │ ├── MySchool.BBook.resources
│ │ ├── MySchool.Book.resources
│ │ ├── MySchool.CourseFrm.resources
│ │ ├── MySchool.CourseMsgFrm.resources
│ │ ├── MySchool.csproj.FileListAbsolute.txt
│ │ ├── MySchool.csproj.GenerateResource.Cache
│ │ ├── MySchool.csprojResolveAssemblyReference.cache
│ │ ├── MySchool.exe
│ │ ├── MySchool.jieyue.resources
│ │ ├── MySchool.Login.resources
│ │ ├── MySchool.MainFrm.resources
│ │ ├── MySchool.pdb
│ │ ├── MySchool.Properties.Resources.resources
│ │ ├── MySchool.StudentFrm.resources
│ │ ├── MySchool.StudentMsgFrm.resources
│ │ ├── MySchool.Workers.resources
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── recourses
│ │ ├── 12.png
│ │ ├── 13.png
│ │ ├── 14.png
│ │ ├── 16.png
│ │ ├── 17.png
│ │ ├── 18.png
│ │ ├── 3eu8NlGbRIahthG6AAOgPPqwoRI778_220x138.jpg
│ │ └── index.gif
│ ├── StudentFrm.cs
│ ├── StudentFrm.Designer.cs
│ ├── StudentFrm.resx
│ ├── Workers.cs
│ ├── Workers.Designer.cs
│ └── Workers.resx
├── MySchool.sln
├── MySchool.suo
├── MySchool.v12.suo
├── 实验三(2)VIP
│ └── chuangti01
│ ├── chuangti01
│ │ ├── Account.cs
│ │ ├── App.config
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── chuangti01.exe
│ │ │ ├── chuangti01.exe.config
│ │ │ ├── chuangti01.pdb
│ │ │ ├── chuangti01.vshost.exe
│ │ │ ├── chuangti01.vshost.exe.config
│ │ │ └── chuangti01.vshost.exe.manifest
│ │ ├── chuangti01.csproj
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── chuangti01.csproj.FileListAbsolute.txt
│ │ │ ├── chuangti01.csproj.GenerateResource.Cache
│ │ │ ├── chuangti01.csprojResolveAssemblyReference.cache
│ │ │ ├── chuangti01.exe
│ │ │ ├── chuangti01.Form1.resources
│ │ │ ├── chuangti01.pdb
│ │ │ ├── chuangti01.Properties.Resources.resources
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── chuangti01.sln
│ └── chuangti01.v12.suo
├── 实验四异常处理
│ ├── 实验四异常处理.doc
│ └── 用户手机号
│ ├── 用户手机号
│ │ ├── App.config
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── 用户手机号.exe
│ │ │ ├── 用户手机号.exe.config
│ │ │ ├── 用户手机号.pdb
│ │ │ ├── 用户手机号.vshost.exe
│ │ │ ├── 用户手机号.vshost.exe.config
│ │ │ └── 用户手机号.vshost.exe.manifest
│ │ ├── ExceptionDemo.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── 用户手机号.csproj.FileListAbsolute.txt
│ │ │ ├── 用户手机号.csprojResolveAssemblyReference.cache
│ │ │ ├── 用户手机号.exe
│ │ │ └── 用户手机号.pdb
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── 用户手机号.csproj
│ ├── 用户手机号.sln
│ └── 用户手机号.v12.suo
├── 寒假c#
│ ├── StudentImage
│ │ ├── BackGround
│ │ │ ├── 10f17dc03aacc1ae696b544d366d190f.jpg
│ │ │ └── 1920hc36.jpg
│ │ ├── Button
│ │ │ ├── backColor.jpg
│ │ │ ├── Exit.jpg
│ │ │ ├── +.jpg
│ │ │ ├── 保存.jpg
│ │ │ ├── 修改.jpg
│ │ │ ├── 修改密码.jpg
│ │ │ ├── 关闭.png
│ │ │ ├── 关闭移入.jpg
│ │ │ ├── 关闭移出.jpg
│ │ │ ├── 更改图片.jpg
│ │ │ ├── 最小化移入.jpg
│ │ │ ├── 最小化移出.jpg
│ │ │ ├── 未标题-1.jpg
│ │ │ ├── 查询.jpg
│ │ │ ├── 管理员按钮2.jpg
│ │ │ ├── 管理员按钮.jpg
│ │ │ ├── 背景.gif
│ │ │ └── 闹钟.jpg
│ │ ├── Ico
│ │ │ ├── clock+.ico
│ │ │ ├── exclamation05.ico
│ │ │ ├── Face01.ico
│ │ │ ├── ie4power.ico
│ │ │ ├── Key4.ico
│ │ │ ├── Object2.ico
│ │ │ ├── Object.ico
│ │ │ ├── Read Me.ico
│ │ │ ├── S.ico
│ │ │ ├── simpsona03.ico
│ │ │ └── Thumbs.ico
│ │ └── pen_il.cur
│ ├── 寒假
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Microsoft.Office.Interop.Excel.dll
│ │ │ ├── Microsoft.Office.Interop.Excel.xml
│ │ │ ├── office.dll
│ │ │ ├── office.xml
│ │ │ ├── pen.cur
│ │ │ ├── 寒假.exe
│ │ │ ├── 寒假.pdb
│ │ │ ├── 寒假.vshost.exe
│ │ │ └── 寒假.vshost.exe.manifest
│ │ ├── DBHelper.cs
│ │ ├── Login.cs
│ │ ├── Login.Designer.cs
│ │ ├── Login.resx
│ │ ├── Manager.cs
│ │ ├── Manager.Designer.cs
│ │ ├── Manager.resx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── 寒假.AddJF.resources
│ │ │ ├── 寒假.AddScore.resources
│ │ │ ├── 寒假.CheckInAndRewardPush.resources
│ │ │ ├── 寒假.Clock.resources
│ │ │ ├── 寒假.csproj.FileListAbsolute.txt
│ │ │ ├── 寒假.csproj.GenerateResource.Cache
│ │ │ ├── 寒假.csprojResolveAssemblyReference.cache
│ │ │ ├── 寒假.exe
│ │ │ ├── 寒假.Login.resources
│ │ │ ├── 寒假.Manager.resources
│ │ │ ├── 寒假.mybookmanager.resources
│ │ │ ├── 寒假.pdb
│ │ │ ├── 寒假.Properties.Resources.resources
│ │ │ ├── 寒假.RegisterUser.resources
│ │ │ ├── 寒假.ScoreMinuteSearch.resources
│ │ │ ├── 寒假.ScoreUpdate.resources
│ │ │ ├── 寒假.StudentMinuteNews.resources
│ │ │ ├── 寒假.StudentOtherScore.resources
│ │ │ ├── 寒假.Student.resources
│ │ │ └── 寒假.UpdatePwd.resources
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── Exit.jpg
│ │ │ ├── +.jpg
│ │ │ ├── 保存.jpg
│ │ │ ├── 修改.jpg
│ │ │ ├── 关闭移入.jpg
│ │ │ ├── 关闭移出.jpg
│ │ │ ├── 最小化移入.jpg
│ │ │ ├── 最小化移出.jpg
│ │ │ ├── 未标题-1.jpg
│ │ │ ├── 管理员按钮2.jpg
│ │ │ └── 管理员按钮.jpg
│ │ ├── SelectReader.cs
│ │ ├── SelectReader.Designer.cs
│ │ ├── SelectReader.resx
│ │ ├── 寒假.csproj
│ │ ├── 寒假.csproj.user
│ │ ├── 寒假.sln
│ │ └── 寒假.v12.suo
│ ├── 寒假.sln
│ ├── 寒假.suo
│ └── 寒假.v12.suo
├── 寒假c#.zip
└── 新建文件夹1
├── confere.h
├── Debug
│ ├── Text1.exe
│ ├── Text1.ilk
│ ├── Text1.obj
│ ├── Text1.pch
│ ├── Text1.pdb
│ ├── vc60.idb
│ └── vc60.pdb
├── sqlist.h
├── Text1.cpp
├── Text1.dsp
├── Text1.dsw
├── Text1.ncb
├── Text1.opt
└── Text1.plg
142 directories, 549 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论