嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
Asp.net sql server实现的简单留言板
.
├── Asp.net sql server实现的简单留言板_message.zip
├── message
│ ├── App_Code
│ │ └── DB.cs
│ ├── App_Data
│ │ ├── message.mdf
│ │ └── message_log.ldf
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Site1.Master
│ ├── Site1.Master.cs
│ ├── Site1.Master.designer.cs
│ ├── Site2.Master
│ ├── Site2.Master.cs
│ ├── Site2.Master.designer.cs
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Web.config
│ ├── add.aspx
│ ├── add.aspx.cs
│ ├── add.aspx.designer.cs
│ ├── adminlogin.aspx
│ ├── adminlogin.aspx.cs
│ ├── adminlogin.aspx.designer.cs
│ ├── adminmes.aspx
│ ├── adminmes.aspx.cs
│ ├── adminmes.aspx.designer.cs
│ ├── adminpwd.aspx
│ ├── adminpwd.aspx.cs
│ ├── adminpwd.aspx.designer.cs
│ ├── adminuser.aspx
│ ├── adminuser.aspx.cs
│ ├── adminuser.aspx.designer.cs
│ ├── bin
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
│ │ ├── message.dll
│ │ ├── message.dll.config
│ │ ├── message.pdb
│ │ └── roslyn
│ │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll
│ │ ├── Microsoft.CSharp.Core.targets
│ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.dll
│ │ ├── Microsoft.CodeAnalysis.Scripting.dll
│ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll
│ │ ├── Microsoft.CodeAnalysis.dll
│ │ ├── Microsoft.DiaSymReader.Native.amd64.dll
│ │ ├── Microsoft.DiaSymReader.Native.x86.dll
│ │ ├── Microsoft.Managed.Core.targets
│ │ ├── Microsoft.VisualBasic.Core.targets
│ │ ├── System.AppContext.dll
│ │ ├── System.Collections.Immutable.dll
│ │ ├── System.Console.dll
│ │ ├── System.Diagnostics.FileVersionInfo.dll
│ │ ├── System.Diagnostics.StackTrace.dll
│ │ ├── System.IO.Compression.dll
│ │ ├── System.IO.FileSystem.Primitives.dll
│ │ ├── System.IO.FileSystem.dll
│ │ ├── System.IO.Pipes.AccessControl.dll
│ │ ├── System.IO.Pipes.dll
│ │ ├── System.Reflection.Metadata.dll
│ │ ├── System.Security.AccessControl.dll
│ │ ├── System.Security.Claims.dll
│ │ ├── System.Security.Cryptography.Algorithms.dll
│ │ ├── System.Security.Cryptography.Encoding.dll
│ │ ├── System.Security.Cryptography.Primitives.dll
│ │ ├── System.Security.Cryptography.X509Certificates.dll
│ │ ├── System.Security.Principal.Windows.dll
│ │ ├── System.Text.Encoding.CodePages.dll
│ │ ├── System.ValueTuple.dll
│ │ ├── System.Xml.ReaderWriter.dll
│ │ ├── System.Xml.XPath.XDocument.dll
│ │ ├── System.Xml.XPath.dll
│ │ ├── System.Xml.XmlDocument.dll
│ │ ├── VBCSCompiler.exe
│ │ ├── VBCSCompiler.exe.config
│ │ ├── csc.exe
│ │ ├── csc.exe.config
│ │ ├── csc.rsp
│ │ ├── csi.exe
│ │ ├── csi.exe.config
│ │ ├── csi.rsp
│ │ ├── vbc.exe
│ │ ├── vbc.exe.config
│ │ └── vbc.rsp
│ ├── images
│ │ ├── title.jpg
│ │ └── title2.jpg
│ ├── login.aspx
│ ├── login.aspx.cs
│ ├── login.aspx.designer.cs
│ ├── logon.aspx
│ ├── logon.aspx.cs
│ ├── logon.aspx.designer.cs
│ ├── message.aspx
│ ├── message.aspx.cs
│ ├── message.aspx.designer.cs
│ ├── message.csproj
│ ├── message.csproj.user
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── message.csproj.CopyComplete
│ │ ├── message.csproj.CoreCompileInputs.cache
│ │ ├── message.csproj.FileListAbsolute.txt
│ │ ├── message.csprojAssemblyReference.cache
│ │ ├── message.dll
│ │ └── message.pdb
│ ├── packages.config
│ ├── reply.aspx
│ ├── reply.aspx.cs
│ └── reply.aspx.designer.cs
├── message.sln
└── packages
└── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0
├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0.nupkg
├── build
│ ├── net45
│ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props
│ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props
│ └── net46
│ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props
│ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props
├── content
│ ├── net45
│ │ ├── app.config.install.xdt
│ │ ├── app.config.uninstall.xdt
│ │ ├── web.config.install.xdt
│ │ └── web.config.uninstall.xdt
│ └── net46
│ ├── app.config.install.xdt
│ ├── app.config.uninstall.xdt
│ ├── web.config.install.xdt
│ └── web.config.uninstall.xdt
├── lib
│ └── net45
│ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
│ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
└── tools
├── Roslyn45
│ ├── Microsoft.Build.Tasks.CodeAnalysis.dll
│ ├── Microsoft.CSharp.Core.targets
│ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll
│ ├── Microsoft.CodeAnalysis.CSharp.dll
│ ├── Microsoft.CodeAnalysis.Scripting.dll
│ ├── Microsoft.CodeAnalysis.VisualBasic.dll
│ ├── Microsoft.CodeAnalysis.dll
│ ├── Microsoft.DiaSymReader.Native.amd64.dll
│ ├── Microsoft.DiaSymReader.Native.x86.dll
│ ├── Microsoft.VisualBasic.Core.targets
│ ├── System.AppContext.dll
│ ├── System.Collections.Immutable.dll
│ ├── System.Diagnostics.StackTrace.dll
│ ├── System.IO.FileSystem.Primitives.dll
│ ├── System.IO.FileSystem.dll
│ ├── System.Reflection.Metadata.dll
│ ├── VBCSCompiler.exe
│ ├── VBCSCompiler.exe.config
│ ├── csc.exe
│ ├── csc.exe.config
│ ├── csc.rsp
│ ├── csi.exe
│ ├── csi.rsp
│ ├── vbc.exe
│ ├── vbc.exe.config
│ └── vbc.rsp
├── RoslynLatest
│ ├── Microsoft.Build.Tasks.CodeAnalysis.dll
│ ├── Microsoft.CSharp.Core.targets
│ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll
│ ├── Microsoft.CodeAnalysis.CSharp.dll
│ ├── Microsoft.CodeAnalysis.Scripting.dll
│ ├── Microsoft.CodeAnalysis.VisualBasic.dll
│ ├── Microsoft.CodeAnalysis.dll
│ ├── Microsoft.DiaSymReader.Native.amd64.dll
│ ├── Microsoft.DiaSymReader.Native.x86.dll
│ ├── Microsoft.Managed.Core.targets
│ ├── Microsoft.VisualBasic.Core.targets
│ ├── System.AppContext.dll
│ ├── System.Collections.Immutable.dll
│ ├── System.Console.dll
│ ├── System.Diagnostics.FileVersionInfo.dll
│ ├── System.Diagnostics.StackTrace.dll
│ ├── System.IO.Compression.dll
│ ├── System.IO.FileSystem.Primitives.dll
│ ├── System.IO.FileSystem.dll
│ ├── System.IO.Pipes.AccessControl.dll
│ ├── System.IO.Pipes.dll
│ ├── System.Reflection.Metadata.dll
│ ├── System.Security.AccessControl.dll
│ ├── System.Security.Claims.dll
│ ├── System.Security.Cryptography.Algorithms.dll
│ ├── System.Security.Cryptography.Encoding.dll
│ ├── System.Security.Cryptography.Primitives.dll
│ ├── System.Security.Cryptography.X509Certificates.dll
│ ├── System.Security.Principal.Windows.dll
│ ├── System.Text.Encoding.CodePages.dll
│ ├── System.ValueTuple.dll
│ ├── System.Xml.ReaderWriter.dll
│ ├── System.Xml.XPath.XDocument.dll
│ ├── System.Xml.XPath.dll
│ ├── System.Xml.XmlDocument.dll
│ ├── VBCSCompiler.exe
│ ├── VBCSCompiler.exe.config
│ ├── csc.exe
│ ├── csc.exe.config
│ ├── csc.rsp
│ ├── csi.exe
│ ├── csi.exe.config
│ ├── csi.rsp
│ ├── vbc.exe
│ ├── vbc.exe.config
│ └── vbc.rsp
└── net45
├── install.ps1
└── uninstall.ps1
24 directories, 198 files