实例介绍
马骏 C#网络应用编程实验指导与开发实例
【实例截图】
【核心代码】
4744300845206346393.rar
└── C#网络应用编程实验指导与开发实例-源程序
├── 实验源程序
│ ├── 实验1
│ │ ├── SimpleConsoleApplication
│ │ │ ├── SimpleConsoleApplication
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ ├── SimpleConsoleApplication.exe
│ │ │ │ │ ├── SimpleConsoleApplication.pdb
│ │ │ │ │ └── SimpleConsoleApplication.vshost.exe
│ │ │ │ ├── obj
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── SimpleConsoleApplication.exe
│ │ │ │ │ │ ├── SimpleConsoleApplication.pdb
│ │ │ │ │ │ └── TempPE
│ │ │ │ │ └── SimpleConsoleApplication.csproj.FileList.txt
│ │ │ │ ├── Program.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── SimpleConsoleApplication.csproj
│ │ │ ├── SimpleConsoleApplication.sln
│ │ │ └── SimpleConsoleApplication.suo
│ │ ├── SimpleWebSite
│ │ │ ├── App_Data
│ │ │ ├── Default.aspx
│ │ │ ├── Default.aspx.cs
│ │ │ └── Web.Config
│ │ └── SimpleWindowsApplication
│ │ ├── SimpleWindowsApplication
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── SimpleWindowsApplication.exe
│ │ │ │ ├── SimpleWindowsApplication.pdb
│ │ │ │ └── SimpleWindowsApplication.vshost.exe
│ │ │ ├── FormMain.cs
│ │ │ ├── FormMain.Designer.cs
│ │ │ ├── FormMain.resx
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Refactor
│ │ │ │ │ ├── SimpleWindowsApplication.csproj.GenerateResource.Cache
│ │ │ │ │ ├── SimpleWindowsApplication.exe
│ │ │ │ │ ├── SimpleWindowsApplication.FormMain.resources
│ │ │ │ │ ├── SimpleWindowsApplication.pdb
│ │ │ │ │ ├── SimpleWindowsApplication.Properties.Resources.resources
│ │ │ │ │ └── TempPE
│ │ │ │ └── SimpleWindowsApplication.csproj.FileList.txt
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SimpleWindowsApplication.csproj
│ │ ├── SimpleWindowsApplication.sln
│ │ └── SimpleWindowsApplication.suo
│ ├── 实验10
│ │ └── DataEncrypt
│ │ ├── DataEncrypt
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── DataEncrypt.exe
│ │ │ │ ├── DataEncrypt.pdb
│ │ │ │ ├── DataEncrypt.vshost.exe
│ │ │ │ └── MyData.txt
│ │ │ ├── DataEncrypt.csproj
│ │ │ ├── FormMain.cs
│ │ │ ├── FormMain.Designer.cs
│ │ │ ├── FormMain.resx
│ │ │ ├── obj
│ │ │ │ ├── DataEncrypt.csproj.FileList.txt
│ │ │ │ └── Debug
│ │ │ │ ├── DataEncrypt.csproj.GenerateResource.Cache
│ │ │ │ ├── DataEncrypt.exe
│ │ │ │ ├── DataEncrypt.FormMain.resources
│ │ │ │ ├── DataEncrypt.pdb
│ │ │ │ ├── DataEncrypt.Properties.Resources.resources
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DataEncrypt.sln
│ │ └── DataEncrypt.suo
│ ├── 实验2
│ │ └── SuperCalculator
│ │ ├── SuperCalculator
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── SuperCalculator.exe
│ │ │ │ ├── SuperCalculator.pdb
│ │ │ │ └── SuperCalculator.vshost.exe
│ │ │ ├── FormMain.cs
│ │ │ ├── FormMain.Designer.cs
│ │ │ ├── FormMain.resx
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Refactor
│ │ │ │ │ ├── SuperCalculator.csproj.GenerateResource.Cache
│ │ │ │ │ ├── SuperCalculator.exe
│ │ │ │ │ ├── SuperCalculator.FormMain.resources
│ │ │ │ │ ├── SuperCalculator.pdb
│ │ │ │ │ ├── SuperCalculator.Properties.Resources.resources
│ │ │ │ │ └── TempPE
│ │ │ │ └── SuperCalculator.csproj.FileList.txt
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SuperCalculator.csproj
│ │ ├── SuperCalculator.sln
│ │ └── SuperCalculator.suo
│ ├── 实验3
│ │ └── BankCustoms
│ │ ├── BankCustoms
│ │ │ ├── BankCustoms.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── BankCustoms.exe
│ │ │ │ ├── BankCustoms.pdb
│ │ │ │ └── BankCustoms.vshost.exe
│ │ │ ├── CheckingCustom.cs
│ │ │ ├── Custom.cs
│ │ │ ├── FixedCustom.cs
│ │ │ ├── FormMain.cs
│ │ │ ├── FormMain.Designer.cs
│ │ │ ├── FormMain.resx
│ │ │ ├── obj
│ │ │ │ ├── BankCustoms.csproj.FileList.txt
│ │ │ │ └── Debug
│ │ │ │ ├── BankCustoms.csproj.GenerateResource.Cache
│ │ │ │ ├── BankCustoms.exe
│ │ │ │ ├── BankCustoms.FormMain.resources
│ │ │ │ ├── BankCustoms.pdb
│ │ │ │ ├── BankCustoms.Properties.Resources.resources
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── BankCustoms.sln
│ │ └── BankCustoms.suo
│ ├── 实验4
│ │ └── MenuBankCustoms
│ │ ├── MenuBankCustoms
│ │ │ ├── Account.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── bankdata.txt
│ │ │ │ ├── MenuBankCustoms.exe
│ │ │ │ ├── MenuBankCustoms.pdb
│ │ │ │ └── MenuBankCustoms.vshost.exe
│ │ │ ├── Customers.cs
│ │ │ ├── FormMain.cs
│ │ │ ├── FormMain.Designer.cs
│ │ │ ├── FormMain.resx
│ │ │ ├── FormShowAccountMessage.cs
│ │ │ ├── FormShowAccountMessage.Designer.cs
│ │ │ ├── FormShowAccountMessage.resx
│ │ │ ├── MenuBankCustoms.csproj
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── MenuBankCustoms.csproj.GenerateResource.Cache
│ │ │ │ │ ├── MenuBankCustoms.exe
│ │ │ │ │ ├── MenuBankCustoms.FormMain.resources
│ │ │ │ │ ├── MenuBankCustoms.FormShowAccountMessage.resources
│ │ │ │ │ ├── MenuBankCustoms.pdb
│ │ │ │ │ ├── MenuBankCustoms.Properties.Resources.resources
│ │ │ │ │ ├── Refactor
│ │ │ │ │ └── TempPE
│ │ │ │ └── MenuBankCustoms.csproj.FileList.txt
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── MenuBankCustoms.sln
│ │ └── MenuBankCustoms.suo
│ ├── 实验5
│ │ └── BankEmployee
│ │ ├── BankEmployee
│ │ │ ├── app.config
│ │ │ ├── BankEmployee.csproj
│ │ │ ├── BankEmployee.csproj.user
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── BankEmployee.exe
│ │ │ │ ├── BankEmployee.exe.config
│ │ │ │ ├── BankEmployee.pdb
│ │ │ │ ├── BankEmployee.vshost.exe
│ │ │ │ ├── BankEmployee.vshost.exe.config
│ │ │ │ ├── Employee_log.ldf
│ │ │ │ └── Employee.mdf
│ │ │ ├── EmployeeDataSet.cs
│ │ │ ├── EmployeeDataSet.Designer.cs
│ │ │ ├── EmployeeDataSet.xsc
│ │ │ ├── EmployeeDataSet.xsd
│ │ │ ├── EmployeeDataSet.xss
│ │ │ ├── Employee_log.LDF
│ │ │ ├── Employee.mdf
│ │ │ ├── FormEmployee.cs
│ │ │ ├── FormEmployee.Designer.cs
│ │ │ ├── FormEmployee.resx
│ │ │ ├── FormMain.cs
│ │ │ ├── FormMain.Designer.cs
│ │ │ ├── FormMain.resx
│ │ │ ├── obj
│ │ │ │ ├── BankEmployee.csproj.FileList.txt
│ │ │ │ └── Debug
│ │ │ │ ├── BankEmployee.csproj.GenerateResource.Cache
│ │ │ │ ├── BankEmployee.exe
│ │ │ │ ├── BankEmployee.FormEmployee.resources
│ │ │ │ ├── BankEmployee.FormMain.resources
│ │ │ │ ├── BankEmployee.pdb
│ │ │ │ ├── BankEmployee.Properties.Resources.resources
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ │ ├── BankDataDataSet.Designer.cs.dll
│ │ │ │ ├── EmployeeDataSet1.Designer.cs.dll
│ │ │ │ └── EmployeeDataSet.Designer.cs.dll
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── BankEmployee.sln
│ │ └── BankEmployee.suo
│ ├── 实验6
│ │ ├── MyBankSite
│ │ │ ├── App_Data
│ │ │ ├── BodyStyle.css
│ │ │ ├── Default.aspx
│ │ │ ├── Default.aspx.cs
│ │ │ ├── image
│ │ │ │ ├── bg1.gif
│ │ │ │ ├── bg2.gif
│ │ │ │ ├── tu1.jpg
│ │ │ │ ├── tu2.jpg
│ │ │ │ └── tu3.gif
│ │ │ ├── MyWeb1.aspx
│ │ │ ├── MyWeb1.aspx.cs
│ │ │ ├── MyWeb2.aspx
│ │ │ ├── MyWeb2.aspx.cs
│ │ │ ├── MyWeb3.aspx
│ │ │ ├── MyWeb3.aspx.cs
│ │ │ ├── MyWeb4.aspx
│ │ │ └── MyWeb4.aspx.cs
│ │ ├── MyBankSite.sln
│ │ ├── MyBankSite.suo
│ │ └── picture
│ │ ├── bg1.gif
│ │ ├── bg2.gif
│ │ ├── Thumbs.db
│ │ ├── tu1.jpg
│ │ ├── tu2.jpg
│ │ └── tu3.gif
│ ├── 实验7
│ │ ├── MyNewBankSite
│ │ │ ├── App_Data
│ │ │ │ ├── BankDatabase_log.LDF
│ │ │ │ └── BankDatabase.mdf
│ │ │ ├── CheckingQuery.aspx
│ │ │ ├── CheckingQuery.aspx.cs
│ │ │ ├── Default.aspx
│ │ │ ├── Default.aspx.cs
│ │ │ ├── MyBank.master
│ │ │ ├── MyBank.master.cs
│ │ │ ├── QueryResult1.aspx
│ │ │ ├── QueryResult1.aspx.cs
│ │ │ ├── QueryResult2.aspx
│ │ │ ├── QueryResult2.aspx.cs
│ │ │ └── Web.config
│ │ ├── MyNewBankSite.sln
│ │ └── MyNewBankSite.suo
│ ├── 实验8
│ │ ├── ChatClient
│ │ │ ├── ChatClient
│ │ │ │ ├── bin
│ │ │ │ │ └── Debug
│ │ │ │ │ ├── ChatClient.exe
│ │ │ │ │ ├── ChatClient.pdb
│ │ │ │ │ └── ChatClient.vshost.exe
│ │ │ │ ├── ChatClient.csproj
│ │ │ │ ├── FormClient.cs
│ │ │ │ ├── FormClient.designer.cs
│ │ │ │ ├── FormClient.resx
│ │ │ │ ├── obj
│ │ │ │ │ ├── ChatClient.csproj.FileList.txt
│ │ │ │ │ └── Debug
│ │ │ │ │ ├── ChatClient.csproj.GenerateResource.Cache
│ │ │ │ │ ├── ChatClient.exe
│ │ │ │ │ ├── ChatClient.FormClient.resources
│ │ │ │ │ ├── ChatClient.pdb
│ │ │ │ │ ├── ChatClient.Properties.Resources.resources
│ │ │ │ │ ├── Refactor
│ │ │ │ │ └── TempPE
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ChatClient.sln
│ │ │ └── ChatClient.suo
│ │ └── ChatServer
│ │ ├── ChatServer
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── ChatServer.exe
│ │ │ │ ├── ChatServer.pdb
│ │ │ │ └── ChatServer.vshost.exe
│ │ │ ├── ChatServer.csproj
│ │ │ ├── FormServer.cs
│ │ │ ├── FormServer.designer.cs
│ │ │ ├── FormServer.resx
│ │ │ ├── obj
│ │ │ │ ├── ChatServer.csproj.FileList.txt
│ │ │ │ └── Debug
│ │ │ │ ├── ChatServer.csproj.GenerateResource.Cache
│ │ │ │ ├── ChatServer.exe
│ │ │ │ ├── ChatServer.FormServer.resources
│ │ │ │ ├── ChatServer.pdb
│ │ │ │ ├── ChatServer.Properties.Resources.resources
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── User.cs
│ │ ├── ChatServer.sln
│ │ └── ChatServer.suo
│ └── 实验9
│ └── MessageAwake
│ ├── MessageAwake
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── demo.ico
│ │ │ ├── MessageAwake.exe
│ │ │ ├── MessageAwake.pdb
│ │ │ └── MessageAwake.vshost.exe
│ │ ├── demo.ico
│ │ ├── FormMain.cs
│ │ ├── FormMain.designer.cs
│ │ ├── FormMain.resx
│ │ ├── MessageAwake.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── MessageAwake.csproj.GenerateResource.Cache
│ │ │ │ ├── MessageAwake.exe
│ │ │ │ ├── MessageAwake.FormMain.resources
│ │ │ │ ├── MessageAwake.pdb
│ │ │ │ ├── MessageAwake.Properties.Resources.resources
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ └── MessageAwake.csproj.FileList.txt
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── MessageAwake.sln
│ └── MessageAwake.suo
├── 第2章源程序
│ └── crxjgl
│ ├── crxjgl
│ │ ├── app.config
│ │ ├── BackupDatabase.cs
│ │ ├── BianMaGuanLi.cs
│ │ ├── BianMaGuanLi.Designer.cs
│ │ ├── BianMaGuanLi.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── crxjgl.application
│ │ │ ├── crxjgl.exe
│ │ │ ├── crxjgl.exe.config
│ │ │ ├── crxjgl.exe.manifest
│ │ │ ├── crxjgl.pdb
│ │ │ ├── crxjgl.vshost.application
│ │ │ ├── crxjgl.vshost.exe
│ │ │ ├── crxjgl.vshost.exe.config
│ │ │ ├── crxjgl.vshost.exe.manifest
│ │ │ ├── Students_log.ldf
│ │ │ └── Students.mdf
│ │ ├── ChengJiGuanLi.cs
│ │ ├── ChengJiGuanLi.Designer.cs
│ │ ├── ChengJiGuanLi.resx
│ │ ├── CommonMethod.cs
│ │ ├── crxjgl.csproj
│ │ ├── crxjgl.csproj.user
│ │ ├── crxjgl_TemporaryKey.pfx
│ │ ├── Cryptogram.cs
│ │ ├── CrystalReportCj.cs
│ │ ├── CrystalReportCj.rpt
│ │ ├── CrystalReportDmc.cs
│ │ ├── CrystalReportDmc.rpt
│ │ ├── CrystalReportJbqk.cs
│ │ ├── CrystalReportJbqk.rpt
│ │ ├── CrystalReportXueJi.cs
│ │ ├── CrystalReportXueJi.rpt
│ │ ├── DetachDatabase.cs
│ │ ├── IBackupStudentsDatabase.cs
│ │ ├── JiBenQingKuangGuanLi.cs
│ │ ├── JiBenQingKuangGuanLi.Designer.cs
│ │ ├── JiBenQingKuangGuanLi.resx
│ │ ├── Main.cs
│ │ ├── Main.Designer.cs
│ │ ├── Main.resx
│ │ ├── ModifyName.cs
│ │ ├── ModifyName.Designer.cs
│ │ ├── ModifyName.resx
│ │ ├── ModifyRuXueShiJian.cs
│ │ ├── ModifyRuXueShiJian.Designer.cs
│ │ ├── ModifyRuXueShiJian.resx
│ │ ├── obj
│ │ │ ├── crxjgl.csproj.FileList.txt
│ │ │ └── Debug
│ │ │ ├── crxjgl.application
│ │ │ ├── crxjgl.BianMaGuanLi.resources
│ │ │ ├── crxjgl.ChengJiGuanLi.resources
│ │ │ ├── crxjgl.CrystalReportCj.rpt
│ │ │ ├── crxjgl.CrystalReportDmc.rpt
│ │ │ ├── crxjgl.CrystalReportJbqk.rpt
│ │ │ ├── crxjgl.CrystalReportXueJi.rpt
│ │ │ ├── crxjgl.csproj.GenerateResource.Cache
│ │ │ ├── crxjgl.exe
│ │ │ ├── crxjgl.exe.manifest
│ │ │ ├── crxjgl.JiBenQingKuangGuanLi.resources
│ │ │ ├── crxjgl.Main.resources
│ │ │ ├── crxjgl.ModifyName.resources
│ │ │ ├── crxjgl.ModifyRuXueShiJian.resources
│ │ │ ├── crxjgl.pdb
│ │ │ ├── crxjgl.PrintCj.resources
│ │ │ ├── crxjgl.PrintDmc.resources
│ │ │ ├── crxjgl.PrintJbqk.resources
│ │ │ ├── crxjgl.PrintXueJi.resources
│ │ │ ├── crxjgl.Properties.Resources.resources
│ │ │ ├── crxjgl.QueryGrade.resources
│ │ │ ├── crxjgl.QueryJbqk.resources
│ │ │ ├── crxjgl.StudentsLogout.resources
│ │ │ ├── crxjgl.TestUserControl.resources
│ │ │ ├── crxjgl.TotalGrades.resources
│ │ │ ├── crxjgl.UpdatePassword.resources
│ │ │ ├── crxjgl.UserControlCj.resources
│ │ │ ├── crxjgl.UserControlJbqk.resources
│ │ │ ├── crxjgl.Welcome.resources
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ │ ├── CrystalReport1.cs.dll
│ │ │ ├── CrystalReportCj.cs.dll
│ │ │ ├── CrystalReportDmc.cs.dll
│ │ │ ├── CrystalReportJbqk.cs.dll
│ │ │ ├── CrystalReportXueJi.cs.dll
│ │ │ ├── Properties.Resources.Designer.cs.dll
│ │ │ ├── StudentsDataSet1.Designer.cs.dll
│ │ │ └── StudentsDataSet.Designer.cs.dll
│ │ ├── PrintCj.cs
│ │ ├── PrintCj.Designer.cs
│ │ ├── PrintCj.resx
│ │ ├── PrintDmc.cs
│ │ ├── PrintDmc.Designer.cs
│ │ ├── PrintDmc.resx
│ │ ├── PrintJbqk.cs
│ │ ├── PrintJbqk.Designer.cs
│ │ ├── PrintJbqk.resx
│ │ ├── PrintXueJi.cs
│ │ ├── PrintXueJi.Designer.cs
│ │ ├── PrintXueJi.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── QueryGrade.cs
│ │ ├── QueryGrade.Designer.cs
│ │ ├── QueryGrade.resx
│ │ ├── QueryJbqk.cs
│ │ ├── QueryJbqk.Designer.cs
│ │ ├── QueryJbqk.resx
│ │ ├── Resources
│ │ │ └── music.wav
│ │ ├── RestoreDatabase.cs
│ │ ├── StudentsDataSet.cs
│ │ ├── StudentsDataSet.Designer.cs
│ │ ├── StudentsDataSet.xsc
│ │ ├── StudentsDataSet.xsd
│ │ ├── StudentsDataSet.xss
│ │ ├── Students_log.LDF
│ │ ├── StudentsLogout.cs
│ │ ├── StudentsLogout.Designer.cs
│ │ ├── StudentsLogout.resx
│ │ ├── Students.mdf
│ │ ├── TestUserControl.cs
│ │ ├── TestUserControl.Designer.cs
│ │ ├── TestUserControl.resx
│ │ ├── TotalGrades.cs
│ │ ├── TotalGrades.Designer.cs
│ │ ├── TotalGrades.resx
│ │ ├── tuochan.mdb
│ │ ├── UpdatePassword.cs
│ │ ├── UpdatePassword.Designer.cs
│ │ ├── UpdatePassword.resx
│ │ ├── UserControlCj.cs
│ │ ├── UserControlCj.Designer.cs
│ │ ├── UserControlCj.resx
│ │ ├── UserControlJbqk.cs
│ │ ├── UserControlJbqk.Designer.cs
│ │ ├── UserControlJbqk.resx
│ │ ├── Welcome.cs
│ │ ├── Welcome.Designer.cs
│ │ └── Welcome.resx
│ ├── crxjglSetup
│ │ ├── crxjglSetup.vdproj
│ │ ├── Debug
│ │ └── Release
│ ├── crxjgl.sln
│ └── crxjgl.suo
├── 第3章源程序
│ ├── MyWebStudy
│ │ ├── App_Code
│ │ │ └── CommonMethods.cs
│ │ ├── App_Data
│ │ │ ├── MyWebData_Log.ldf
│ │ │ └── MyWebData.mdf
│ │ ├── App_Themes
│ │ │ └── 主题1
│ │ │ ├── SkinFile.skin
│ │ │ └── Style.css
│ │ ├── Article.aspx
│ │ ├── Article.aspx.cs
│ │ ├── articles
│ │ │ ├── 1001.files
│ │ │ │ ├── 16802.jpg
│ │ │ │ ├── 18769.jpg
│ │ │ │ ├── 1x1.gif
│ │ │ │ ├── broker.js
│ │ │ │ ├── CnForumsLogo.gif
│ │ │ │ ├── default.css
│ │ │ │ ├── EULA.gif
│ │ │ │ ├── GenderMale.gif
│ │ │ │ ├── global.js
│ │ │ │ ├── icon_mini_faq.gif
│ │ │ │ ├── icon_mini_home.gif
│ │ │ │ ├── icon_mini_login.gif
│ │ │ │ ├── icon_mini_memberlist.gif
│ │ │ │ ├── icon_mini_profile.gif
│ │ │ │ ├── icon_mini_search.gif
│ │ │ │ ├── icon_post_show.gif
│ │ │ │ ├── icon_toolbar_left.gif
│ │ │ │ ├── icon_toolbar_right.gif
│ │ │ │ ├── js.htm
│ │ │ │ ├── ms_masthead_ltr.gif
│ │ │ │ ├── next.gif
│ │ │ │ ├── post_button_pm.gif
│ │ │ │ ├── post_button_weblog.gif
│ │ │ │ ├── post_button_www.gif
│ │ │ │ ├── previous.gif
│ │ │ │ ├── print.gif
│ │ │ │ ├── rank0.gif
│ │ │ │ ├── rankTop10.gif
│ │ │ │ ├── rankTop500.gif
│ │ │ │ ├── search.gif
│ │ │ │ ├── style.css
│ │ │ │ ├── subbanner.jpg
│ │ │ │ ├── text.jpg
│ │ │ │ ├── trans_pixel.gif
│ │ │ │ ├── user_IsOffline.gif
│ │ │ │ └── VS2005_logo_product_home.gif
│ │ │ ├── 1001.htm
│ │ │ └── 5001.htm
│ │ ├── ArticleShow.aspx
│ │ ├── ArticleShow.aspx.cs
│ │ ├── BrowerCount.aspx
│ │ ├── BrowerCount.aspx.cs
│ │ ├── download
│ │ │ ├── cs1.rar
│ │ │ └── cs2.rar
│ │ ├── Download.aspx
│ │ ├── Download.aspx.cs
│ │ ├── Global.asax
│ │ ├── images
│ │ │ ├── buttonOK.gif
│ │ │ ├── copyright.gif
│ │ │ ├── login.gif
│ │ │ ├── main.swf
│ │ │ ├── register.gif
│ │ │ └── top.png
│ │ ├── InnerSearch.aspx
│ │ ├── InnerSearch.aspx.cs
│ │ ├── JokeArticle.aspx
│ │ ├── JokeArticle.aspx.cs
│ │ ├── JokePicture.aspx
│ │ ├── JokePicture.aspx.cs
│ │ ├── login.aspx
│ │ ├── login.aspx.cs
│ │ ├── Main.aspx
│ │ ├── Main.aspx.cs
│ │ ├── MasterPage1.master
│ │ ├── MasterPage1.master.cs
│ │ ├── ModifyForum.aspx
│ │ ├── ModifyForum.aspx.cs
│ │ ├── OuterSearch.aspx
│ │ ├── OuterSearch.aspx.cs
│ │ ├── Register.aspx
│ │ ├── Register.aspx.cs
│ │ ├── SearchFlash.aspx
│ │ ├── SearchFlash.aspx.cs
│ │ ├── SearchMusic.aspx
│ │ ├── SearchMusic.aspx.cs
│ │ ├── SearchVideo.aspx
│ │ ├── SearchVideo.aspx.cs
│ │ ├── sounds
│ │ │ └── flappers.mp3
│ │ ├── SubForum.aspx
│ │ ├── SubForum.aspx.cs
│ │ ├── TechnologyForum.aspx
│ │ ├── TechnologyForum.aspx.cs
│ │ ├── upload
│ │ ├── Upload.aspx
│ │ ├── Upload.aspx.cs
│ │ ├── UserAdvice.aspx
│ │ ├── UserAdvice.aspx.cs
│ │ └── web.config
│ ├── MyWebStudy.sln
│ └── MyWebStudy.suo
└── 第4章源程序
├── GobangClient
│ ├── GobangClient
│ │ ├── bin
│ │ │ └── Debug
│ │ ├── ChessColor.cs
│ │ ├── FormMain.cs
│ │ ├── FormMain.Designer.cs
│ │ ├── FormMain.resx
│ │ ├── GobangClient.csproj
│ │ ├── GobangClient.csproj.user
│ │ ├── GobangClient_TemporaryKey.pfx
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ └── GobangClient.csproj.FileList.txt
│ │ ├── PlayingTable.cs
│ │ ├── PlayingTable.Designer.cs
│ │ ├── PlayingTable.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── Resources
│ │ ├── BackgroundMusic.wav
│ │ ├── blackChess.gif
│ │ ├── ChessSound.wav
│ │ ├── GobangBoard.gif
│ │ └── whiteChess.gif
│ ├── GobangClient.sln
│ └── GobangClient.suo
├── GobangServer
│ ├── GobangServer
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── GobangServer.exe
│ │ │ ├── GobangServer.pdb
│ │ │ └── GobangServer.vshost.exe
│ │ ├── FormServer.cs
│ │ ├── FormServer.Designer.cs
│ │ ├── FormServer.resx
│ │ ├── GameRoom.cs
│ │ ├── GobangBoard.cs
│ │ ├── GobangServer.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── GobangServer.csproj.GenerateResource.Cache
│ │ │ │ ├── GobangServer.exe
│ │ │ │ ├── GobangServer.FormServer.resources
│ │ │ │ ├── GobangServer.pdb
│ │ │ │ ├── GobangServer.Properties.Resources.resources
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ └── GobangServer.csproj.FileList.txt
│ │ ├── Player.cs
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Service.cs
│ │ └── User.cs
│ ├── GobangServer.sln
│ └── GobangServer.suo
└── GobangUserControl
├── GobangUserControl
│ ├── bin
│ │ └── Debug
│ │ ├── GobangUserControl.dll
│ │ └── GobangUserControl.pdb
│ ├── GobangRoom.cs
│ ├── GobangRoom.Designer.cs
│ ├── GobangRoom.resx
│ ├── GobangUserControl.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── GobangUserControl.csproj.GenerateResource.Cache
│ │ │ ├── GobangUserControl.dll
│ │ │ ├── GobangUserControl.GobangRoom.resources
│ │ │ ├── GobangUserControl.pdb
│ │ │ ├── GobangUserControl.Properties.Resources.resources
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── GobangUserControl.csproj.FileList.txt
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ └── Resources.resx
│ └── Resources
│ ├── player.gif
│ └── SmallBoard.bmp
├── GobangUserControl.sln
└── GobangUserControl.suo
165 directories, 588 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论