基本信息
源码名称:C# ASP.NET - 实现“百度知道”简单范例
源码大小:1.08M
文件格式:.7z
开发语言:C#
更新时间:2023-07-06
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
C# ASP.NET - 实现“百度知道”简单范例
本范例的功能及操作流程和“百度知道”非常类似。实现了用户注册、提出问题、回答问题、关闭问题、选择最佳问题、设置问题悬赏分,以及搜索相关问题等功能;
文件清单
└── ZhiDao
├── ClientWebSite
│ ├── Answer.aspx
│ ├── Answer.aspx.cs
│ ├── App_Code
│ │ ├── ClientHelper.cs
│ │ ├── DataClasses.dbml
│ │ ├── DataClasses.dbml.layout
│ │ └── DataClasses.designer.cs
│ ├── Bin
│ │ ├── ServerControl.dll
│ │ └── ServerControl.pdb
│ ├── CSS
│ │ ├── css.css
│ │ ├── jquery.js
│ │ └── style.css
│ ├── Images
│ │ ├── bbs_header_nav.gif
│ │ ├── bg.gif
│ │ ├── btn_register.gif
│ │ ├── end.gif
│ │ ├── hd.gif
│ │ ├── home32.gif
│ │ ├── ite.gif
│ │ ├── left011.gif
│ │ ├── left01.gif
│ │ ├── left022.gif
│ │ ├── left02.gif
│ │ ├── left033.gif
│ │ ├── left03.gif
│ │ ├── login1_01.gif
│ │ ├── login1_02.gif
│ │ ├── login1_03.gif
│ │ ├── login1_04.gif
│ │ ├── loginbg.gif
│ │ ├── loginb.gif
│ │ ├── login.jpg
│ │ ├── logo.gif
│ │ ├── mark_time.gif
│ │ ├── mark_title_simple.gif
│ │ ├── mark_ts.gif
│ │ ├── mark_unsearch.gif
│ │ ├── so.gif
│ │ ├── SureLogin.jpg
│ │ ├── text.gif
│ │ ├── top_01.gif
│ │ ├── top_02.gif
│ │ ├── top_03.gif
│ │ ├── top_04.gif
│ │ ├── top_05.gif
│ │ ├── top_06.gif
│ │ ├── top_07.gif
│ │ ├── top_08.gif
│ │ ├── top_09.gif
│ │ ├── top_10.gif
│ │ ├── top2_01.gif
│ │ ├── top2_02.gif
│ │ ├── top2_03.gif
│ │ ├── top2_04.gif
│ │ ├── top2_05.gif
│ │ ├── top2_06.gif
│ │ ├── top2_07.gif
│ │ ├── top2_08.gif
│ │ ├── top2_09.gif
│ │ ├── top2_10.gif
│ │ ├── topic_permit.gif
│ │ ├── tw.gif
│ │ ├── unface.gif
│ │ └── zhuce.jpg
│ ├── Index.aspx
│ ├── Index.aspx.cs
│ ├── Login.aspx
│ ├── Login.aspx.cs
│ ├── NotLogin.aspx
│ ├── NotLogin.aspx.cs
│ ├── NotSearch.aspx
│ ├── NotSearch.aspx.cs
│ ├── QuestionAnswer.aspx
│ ├── QuestionAnswer.aspx.cs
│ ├── Question.aspx
│ ├── Question.aspx.cs
│ ├── QuestionCatalog.aspx
│ ├── QuestionCatalog.aspx.cs
│ ├── QuestionList2.aspx
│ ├── QuestionList2.aspx.cs
│ ├── QuestionList.aspx
│ ├── QuestionList.aspx.cs
│ ├── Register.aspx
│ ├── Register.aspx.cs
│ ├── UserControl
│ │ ├── Footer.ascx
│ │ ├── Footer.ascx.cs
│ │ ├── Header.ascx
│ │ ├── Header.ascx.cs
│ │ ├── Navigation.ascx
│ │ ├── Navigation.ascx.cs
│ │ ├── Search.ascx
│ │ └── Search.ascx.cs
│ └── Web.config
├── DB
│ ├── SampleDB_log.ldf
│ └── SampleDB.mdf
├── ServerControl
│ ├── bin
│ │ ├── Debug
│ │ └── Release
│ ├── GridView.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── TempPE
│ ├── OurPager.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ServerControl.csproj
│ ├── ServerControl.csproj.DotSettings.user
│ └── ValidateCode.cs
├── ServerWebSite
│ ├── App_Code
│ │ ├── ClientHelper.cs
│ │ ├── DataClasses.dbml
│ │ ├── DataClasses.dbml.layout
│ │ └── DataClasses.designer.cs
│ ├── Bin
│ │ ├── ServerControl.dll
│ │ └── ServerControl.pdb
│ ├── QuestionManager.aspx
│ ├── QuestionManager.aspx.cs
│ ├── UserManager.aspx
│ ├── UserManager.aspx.cs
│ └── Web.config
├── ZhiDao.sln
├── ZhiDao.sln.DotSettings.user
└── ZhiDao.v11.suo
19 directories, 117 files
C# ASP.NET - 实现“百度知道”简单范例
本范例的功能及操作流程和“百度知道”非常类似。实现了用户注册、提出问题、回答问题、关闭问题、选择最佳问题、设置问题悬赏分,以及搜索相关问题等功能;
文件清单
└── ZhiDao
├── ClientWebSite
│ ├── Answer.aspx
│ ├── Answer.aspx.cs
│ ├── App_Code
│ │ ├── ClientHelper.cs
│ │ ├── DataClasses.dbml
│ │ ├── DataClasses.dbml.layout
│ │ └── DataClasses.designer.cs
│ ├── Bin
│ │ ├── ServerControl.dll
│ │ └── ServerControl.pdb
│ ├── CSS
│ │ ├── css.css
│ │ ├── jquery.js
│ │ └── style.css
│ ├── Images
│ │ ├── bbs_header_nav.gif
│ │ ├── bg.gif
│ │ ├── btn_register.gif
│ │ ├── end.gif
│ │ ├── hd.gif
│ │ ├── home32.gif
│ │ ├── ite.gif
│ │ ├── left011.gif
│ │ ├── left01.gif
│ │ ├── left022.gif
│ │ ├── left02.gif
│ │ ├── left033.gif
│ │ ├── left03.gif
│ │ ├── login1_01.gif
│ │ ├── login1_02.gif
│ │ ├── login1_03.gif
│ │ ├── login1_04.gif
│ │ ├── loginbg.gif
│ │ ├── loginb.gif
│ │ ├── login.jpg
│ │ ├── logo.gif
│ │ ├── mark_time.gif
│ │ ├── mark_title_simple.gif
│ │ ├── mark_ts.gif
│ │ ├── mark_unsearch.gif
│ │ ├── so.gif
│ │ ├── SureLogin.jpg
│ │ ├── text.gif
│ │ ├── top_01.gif
│ │ ├── top_02.gif
│ │ ├── top_03.gif
│ │ ├── top_04.gif
│ │ ├── top_05.gif
│ │ ├── top_06.gif
│ │ ├── top_07.gif
│ │ ├── top_08.gif
│ │ ├── top_09.gif
│ │ ├── top_10.gif
│ │ ├── top2_01.gif
│ │ ├── top2_02.gif
│ │ ├── top2_03.gif
│ │ ├── top2_04.gif
│ │ ├── top2_05.gif
│ │ ├── top2_06.gif
│ │ ├── top2_07.gif
│ │ ├── top2_08.gif
│ │ ├── top2_09.gif
│ │ ├── top2_10.gif
│ │ ├── topic_permit.gif
│ │ ├── tw.gif
│ │ ├── unface.gif
│ │ └── zhuce.jpg
│ ├── Index.aspx
│ ├── Index.aspx.cs
│ ├── Login.aspx
│ ├── Login.aspx.cs
│ ├── NotLogin.aspx
│ ├── NotLogin.aspx.cs
│ ├── NotSearch.aspx
│ ├── NotSearch.aspx.cs
│ ├── QuestionAnswer.aspx
│ ├── QuestionAnswer.aspx.cs
│ ├── Question.aspx
│ ├── Question.aspx.cs
│ ├── QuestionCatalog.aspx
│ ├── QuestionCatalog.aspx.cs
│ ├── QuestionList2.aspx
│ ├── QuestionList2.aspx.cs
│ ├── QuestionList.aspx
│ ├── QuestionList.aspx.cs
│ ├── Register.aspx
│ ├── Register.aspx.cs
│ ├── UserControl
│ │ ├── Footer.ascx
│ │ ├── Footer.ascx.cs
│ │ ├── Header.ascx
│ │ ├── Header.ascx.cs
│ │ ├── Navigation.ascx
│ │ ├── Navigation.ascx.cs
│ │ ├── Search.ascx
│ │ └── Search.ascx.cs
│ └── Web.config
├── DB
│ ├── SampleDB_log.ldf
│ └── SampleDB.mdf
├── ServerControl
│ ├── bin
│ │ ├── Debug
│ │ └── Release
│ ├── GridView.cs
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── TempPE
│ ├── OurPager.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ServerControl.csproj
│ ├── ServerControl.csproj.DotSettings.user
│ └── ValidateCode.cs
├── ServerWebSite
│ ├── App_Code
│ │ ├── ClientHelper.cs
│ │ ├── DataClasses.dbml
│ │ ├── DataClasses.dbml.layout
│ │ └── DataClasses.designer.cs
│ ├── Bin
│ │ ├── ServerControl.dll
│ │ └── ServerControl.pdb
│ ├── QuestionManager.aspx
│ ├── QuestionManager.aspx.cs
│ ├── UserManager.aspx
│ ├── UserManager.aspx.cs
│ └── Web.config
├── ZhiDao.sln
├── ZhiDao.sln.DotSettings.user
└── ZhiDao.v11.suo
19 directories, 117 files