commit 798f690742b2693fdaa6ecbbaf3bcf15b359d505 Author: editor <@51Aspx.com> Date: Wed Mar 6 18:10:09 2024 +0800 初始化 diff --git a/51Aspx源码必读.txt b/51Aspx源码必读.txt new file mode 100644 index 0000000..0a5304a --- /dev/null +++ b/51Aspx源码必读.txt @@ -0,0 +1,66 @@ +COCOWO1.0开源博客源码 + +一、源码描述 + +环境:VS2022 Access +二、功能介绍 + +COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码 +COCOWO1.0开源博客源码 多浏览器兼容,能够很好得兼容Mozilla,IE等浏览器 +功能强大的文章编辑器,同时兼容两种编辑方式.在线编辑器采用FckEditor. +COCOWOBLOG采用的UBB编辑器由Blog作者独立开发.支持自定义面板和CSS.自带HTML转换UBB代码功能 +自定义模块.可以自己修改页面上的的布局. 让不懂制作网页的用户也能自己增加和修改页面上的版块. +Skin功能,随时可以给自己的Blog换上新的CSS样式界面 +自定义分类.可以同时定制外部连接分类和Blog内置分类.可以自定义分类显示的位置.由用户自己定义顶部导航条和侧边导航条 +权限分组.管理员还可以对每个分组成员指定上传文件的权限等等 +Blog数据采用缓存方式保存.减轻服务器负担和增加运行速度 + +后台功能: +1、后台首页 +2、站点基本设置 +3、日志分类管理 +4、评论留言管理 +5、界面与插件 +6、数据库与附件 +7、帐户与权限 +8、友情链接管理 +9、表情与关键字 +10、服务器信息 + +前台: +系统管理 +发表新日志 +修改个人资料 +退出系统 + + + +三、注意事项 +1、管理员账号与密码:admin 51aspx 。 +2、ctrl+F5运行即可。 +3、VS内置IIS设置为32位来运行。 + + + + + +作者: cocowo + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/PO13ZOKPA79413 +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: 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/Backup/COMP/COMP.csproj b/Backup/COMP/COMP.csproj new file mode 100644 index 0000000..6bdc6c1 --- /dev/null +++ b/Backup/COMP/COMP.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 8.0.50727 + 2.0 + {1CEA5581-6A16-4256-890A-24366482D87F} + Library + Properties + COCOWO.COMP + COCOWO.COMP + + + true + full diff --git a/Backup/COMP/FTP.cs b/Backup/COMP/FTP.cs new file mode 100644 index 0000000..afddecb --- /dev/null +++ b/Backup/COMP/FTP.cs @@ -0,0 +1,15 @@ +using System; +using System.IO; +using System.Configuration; + +namespace COCOWO.COMP +{ + /// + /// 部分FTP类代码来自网络.版式权归原作者所有 + /// + public class FTP + { + public FTP() + { + + } diff --git a/Backup/COMP/ImageCode.cs b/Backup/COMP/ImageCode.cs new file mode 100644 index 0000000..ce02e9c --- /dev/null +++ b/Backup/COMP/ImageCode.cs @@ -0,0 +1,15 @@ +using System; +using System.Drawing; +using System.Drawing.Imaging; +using System.IO; +using System.Drawing.Drawing2D; +using System.Web; +using System.Web.UI; + +namespace COCOWO.COMP +{ + /// + /// ImageLogin 的摘要说明。 + /// + public class ImageLogincs + { diff --git a/Backup/COMP/Jscript.cs b/Backup/COMP/Jscript.cs new file mode 100644 index 0000000..72e928d --- /dev/null +++ b/Backup/COMP/Jscript.cs @@ -0,0 +1,15 @@ +using System; +using System.Web; +using System.Web.UI; + +namespace COCOWO.COMP +{ + /// + /// 一些常用的Js调用 + /// 创建时间:2006-8-3 + /// 创建者:马先光 + /// + public class Jscript + { + + /// diff --git a/Backup/COMP/MyControl.cs b/Backup/COMP/MyControl.cs new file mode 100644 index 0000000..0100722 --- /dev/null +++ b/Backup/COMP/MyControl.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace COCOWO.COMP +{ + /// + /// 对控件的处理类 + /// 创建时间:2006-8-3 + /// 创建者:马先光 + /// + public class MyControl diff --git a/Backup/COMP/Properties/AssemblyInfo.cs b/Backup/COMP/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0256cbf --- /dev/null +++ b/Backup/COMP/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过下列属性集 +// 控制。更改这些属性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("COMP")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("COCOWO")] +[assembly: AssemblyProduct("COMP")] +[assembly: AssemblyCopyright("版权所有 (C) COCOWO 2006")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/Backup/COMP/QueryString.cs b/Backup/COMP/QueryString.cs new file mode 100644 index 0000000..62c67d5 --- /dev/null +++ b/Backup/COMP/QueryString.cs @@ -0,0 +1,15 @@ +using System; +using System.Web; + +namespace COCOWO.COMP +{ + /// + /// ˵������ȡ��ѯ�ַ������� + /// ��д�ߣ����ȹ� + /// Date��2006-4 + /// + public class QueryString + { + public QueryString() + { + // diff --git a/Backup/COMP/StringUtil.cs b/Backup/COMP/StringUtil.cs new file mode 100644 index 0000000..e75fe66 --- /dev/null +++ b/Backup/COMP/StringUtil.cs @@ -0,0 +1,15 @@ +using System; +using System.Drawing; +using System.Data; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Text.RegularExpressions; +using System.IO; +using System.Drawing.Imaging; +using System.Text; +using System.Web.Security; + +namespace COCOWO.COMP +{ + /// diff --git a/Backup/COMP/UsersInfo.cs b/Backup/COMP/UsersInfo.cs new file mode 100644 index 0000000..bc5785d --- /dev/null +++ b/Backup/COMP/UsersInfo.cs @@ -0,0 +1,15 @@ +using System; +using System.Web; + +namespace COCOWO.COMP +{ + public class UsersInfo + { + /// + /// 返回用户ID + /// + static public string GetUserId + { + #region + get + { diff --git a/Backup/COMP/XmlControl.cs b/Backup/COMP/XmlControl.cs new file mode 100644 index 0000000..c3646cf --- /dev/null +++ b/Backup/COMP/XmlControl.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Collections.Generic; +using System.Text; +using System.Xml; +using System.IO; + +namespace COCOWO.COMP +{ + public class XmlControl + { + protected string strXmlFile; + protected XmlDocument objXmlDoc = new XmlDocument(); + + public XmlControl(string XmlFile) diff --git a/Backup/DB/DB.csproj b/Backup/DB/DB.csproj new file mode 100644 index 0000000..16c03b2 --- /dev/null +++ b/Backup/DB/DB.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 8.0.50727 + 2.0 + {88550AA5-4D06-4205-93DC-A8DCC0822EE0} + Library + Properties + COCOWO.DB + COCOWO.DB + + + true + full diff --git a/Backup/DB/Properties/AssemblyInfo.cs b/Backup/DB/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..da7e50d --- /dev/null +++ b/Backup/DB/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过下列属性集 +// 控制。更改这些属性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("DB")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("COCOWO")] +[assembly: AssemblyProduct("DB")] +[assembly: AssemblyCopyright("版权所有 (C) COCOWO 2006")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/Backup/DB/SQL_DB.cs b/Backup/DB/SQL_DB.cs new file mode 100644 index 0000000..8d05dc9 --- /dev/null +++ b/Backup/DB/SQL_DB.cs @@ -0,0 +1,15 @@ +/*��.NET����ACCESS���ݿ�(����,ѹ��,����,�ָ����) +дһ��С�ͳ���,��ͷû��Microsoft Access,��ν������ݿ�,һ����Ȼ��. +��������C:\Program Files\Common Files\System\ado\msadox.dll,��DLL����ADOX�����ռ�; +��������C:\Program Files\Common Files\System\ado\msjro.dll,��DLL����JRO�����ռ� +ע��:�磬����dll���ɹ����ֶ���com��� ����Ϊ .net���������vs.net���ߵ��� + */ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +using System.IO; +using System.Configuration; +using System.Web; +using ADOX; //�������ռ��������ACCESS����(����)--������� ==> ���� ==> �������� ==> �����ҵ�.dll diff --git a/Backup/DB/SqlDataBase.cs b/Backup/DB/SqlDataBase.cs new file mode 100644 index 0000000..5bd6617 --- /dev/null +++ b/Backup/DB/SqlDataBase.cs @@ -0,0 +1,15 @@ +using System; +using System.Web; +using System.Data; +using System.Data.OleDb; +using System.Configuration; + +namespace COCOWO.DB +{ + + /// + /// 数据库操作基类 + /// 实现对Sql数据库的各种操作 + /// 创建时间:2006-8-3 + /// + public class SqlDataBase diff --git a/Backup/DB/Users.cs b/Backup/DB/Users.cs new file mode 100644 index 0000000..0f8f493 --- /dev/null +++ b/Backup/DB/Users.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Web; +using System.Web.UI.WebControls; +using System.Web.UI; +using COCOWO.COMP; + +namespace COCOWO.DB +{ + public class Users :SqlDataBase + { + string strSql = null; + /// diff --git a/Backup/DB/blog_Category.cs b/Backup/DB/blog_Category.cs new file mode 100644 index 0000000..9754b34 --- /dev/null +++ b/Backup/DB/blog_Category.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Category : SqlDataBase + { + /// + /// ��ȡ�����б� + /// + public DataView Category_List() + { diff --git a/Backup/DB/blog_Comment.cs b/Backup/DB/blog_Comment.cs new file mode 100644 index 0000000..9578b54 --- /dev/null +++ b/Backup/DB/blog_Comment.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Web; +using System.Collections.Generic; +using System.Text; +using COCOWO.COMP; + +namespace COCOWO.DB +{ + public class blog_Comment : SqlDataBase + { + + /// + /// ����ȫ��������Ϣ diff --git a/Backup/DB/blog_Content.cs b/Backup/DB/blog_Content.cs new file mode 100644 index 0000000..32b6e65 --- /dev/null +++ b/Backup/DB/blog_Content.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +using System.Web; + + + +namespace COCOWO.DB +{ + public class blog_Content :SqlDataBase + { + blog_tag Blog_tag = new blog_tag(); + blog_Smilies Blog_Smilies = new blog_Smilies(); diff --git a/Backup/DB/blog_Keywords.cs b/Backup/DB/blog_Keywords.cs new file mode 100644 index 0000000..deae001 --- /dev/null +++ b/Backup/DB/blog_Keywords.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Keywords : SqlDataBase + { + /// + /// ��ȡȫ������ + /// + /// + /// diff --git a/Backup/DB/blog_Links.cs b/Backup/DB/blog_Links.cs new file mode 100644 index 0000000..0101fac --- /dev/null +++ b/Backup/DB/blog_Links.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Links : SqlDataBase + { + /// + /// ��ȡLinks�б� + /// + public DataView Links_List() + { diff --git a/Backup/DB/blog_Smilies.cs b/Backup/DB/blog_Smilies.cs new file mode 100644 index 0000000..0fed94a --- /dev/null +++ b/Backup/DB/blog_Smilies.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Smilies : SqlDataBase + { + /// + /// ��ȡȫ������ + /// + /// + /// diff --git a/Backup/DB/blog_Trackback.cs b/Backup/DB/blog_Trackback.cs new file mode 100644 index 0000000..e0206bc --- /dev/null +++ b/Backup/DB/blog_Trackback.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Trackback : SqlDataBase + { + /// + /// ��ȡTrackback�б� + /// + public DataView Trackback_List() + { diff --git a/Backup/DB/blog_module.cs b/Backup/DB/blog_module.cs new file mode 100644 index 0000000..d67cc47 --- /dev/null +++ b/Backup/DB/blog_module.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +using System.Web; +using COCOWO.COMP; +namespace COCOWO.DB +{ + public class blog_module : SqlDataBase + { + /// + /// ģ����� + /// + /// diff --git a/Backup/DB/blog_spam.cs b/Backup/DB/blog_spam.cs new file mode 100644 index 0000000..0b82ccc --- /dev/null +++ b/Backup/DB/blog_spam.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +namespace COCOWO.DB +{ + public class blog_spam : SqlDataBase + { + /// + /// ��ȡspam�б� + /// + public DataView Spam_List() + { + return GetDv("SELECT * FROM blog_spam order by spam_id desc"); diff --git a/Backup/DB/blog_status.cs b/Backup/DB/blog_status.cs new file mode 100644 index 0000000..ba97f6b --- /dev/null +++ b/Backup/DB/blog_status.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_status : SqlDataBase + { + /// + /// ��ȡstatus�б� + /// + public DataView Status_List() + { diff --git a/Backup/DB/blog_tag.cs b/Backup/DB/blog_tag.cs new file mode 100644 index 0000000..b9bd6b3 --- /dev/null +++ b/Backup/DB/blog_tag.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +namespace COCOWO.DB +{ + public class blog_tag : SqlDataBase + { + /// + /// ��ȡtag�б� + /// + public DataView Tag_List() + { + return GetDv("SELECT * FROM blog_tag order by tag_id desc"); diff --git a/Backup/DB/library.cs b/Backup/DB/library.cs new file mode 100644 index 0000000..5207dc5 --- /dev/null +++ b/Backup/DB/library.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; +using System.Data; +using System.Web; +using System.Web.SessionState; +using COCOWO.COMP; + + + +namespace COCOWO.DB +{ + public class library + { + blog_module Blog_module = new blog_module(); diff --git a/Backup/FCKeditor.Net_2.2/AssemblyInfo.cs b/Backup/FCKeditor.Net_2.2/AssemblyInfo.cs new file mode 100644 index 0000000..67dab84 --- /dev/null +++ b/Backup/FCKeditor.Net_2.2/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Security.Permissions ; +using System.Web.UI ; + +[assembly:TagPrefix("FredCK.FCKeditorV2", "FCKeditorV2")] + +[assembly:System.CLSCompliant(true)] +[assembly:System.Runtime.InteropServices.ComVisible(false)] + +// +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +// diff --git a/Backup/FCKeditor.Net_2.2/FCKeditor.cs b/Backup/FCKeditor.Net_2.2/FCKeditor.cs new file mode 100644 index 0000000..eb5a87c --- /dev/null +++ b/Backup/FCKeditor.Net_2.2/FCKeditor.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FCKeditor.cs + * This is the FCKeditor Asp.Net control. + * diff --git a/Backup/FCKeditor.Net_2.2/FCKeditorConfigurations.cs b/Backup/FCKeditor.Net_2.2/FCKeditorConfigurations.cs new file mode 100644 index 0000000..74df7d8 --- /dev/null +++ b/Backup/FCKeditor.Net_2.2/FCKeditorConfigurations.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FCKeditorConfigurations.cs + * Class that holds all editor configurations. + * diff --git a/Backup/FCKeditor.Net_2.2/FCKeditorDesigner.cs b/Backup/FCKeditor.Net_2.2/FCKeditorDesigner.cs new file mode 100644 index 0000000..8a80849 --- /dev/null +++ b/Backup/FCKeditor.Net_2.2/FCKeditorDesigner.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FCKeditorDesigner.cs + * The EditorDesigner class defines the editor visualization at design + * time. diff --git a/Backup/FCKeditor.Net_2.2/FCKeditorV2.csproj b/Backup/FCKeditor.Net_2.2/FCKeditorV2.csproj new file mode 100644 index 0000000..5ed6029 --- /dev/null +++ b/Backup/FCKeditor.Net_2.2/FCKeditorV2.csproj @@ -0,0 +1,15 @@ + + + Local + 8.0.50727 + 2.0 + {F6F32704-97E0-4006-A474-5A9729C6B1B4} + Debug + AnyCPU + + + + + COCOWO.FCKeditorV2 + + diff --git a/Backup/FCKeditor.Net_2.2/FileBrowserConnector.cs b/Backup/FCKeditor.Net_2.2/FileBrowserConnector.cs new file mode 100644 index 0000000..46ca041 --- /dev/null +++ b/Backup/FCKeditor.Net_2.2/FileBrowserConnector.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FileBrowserConnector.cs + * This is the code behind of the connector.aspx page used by the + * File Browser. diff --git a/Backup/FCKeditor.Net_2.2/FileWorkerBase.cs b/Backup/FCKeditor.Net_2.2/FileWorkerBase.cs new file mode 100644 index 0000000..8c390cf --- /dev/null +++ b/Backup/FCKeditor.Net_2.2/FileWorkerBase.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FileWorkerBase.cs + * Base class used by the FileBrowserConnector and Uploader. + * diff --git a/Backup/FCKeditor.Net_2.2/Uploader.cs b/Backup/FCKeditor.Net_2.2/Uploader.cs new file mode 100644 index 0000000..3fe720e --- /dev/null +++ b/Backup/FCKeditor.Net_2.2/Uploader.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: Uploader.cs + * This is the code behind of the uploader.aspx page used for Quick Uploads. + * diff --git a/Backup/FCKeditor.Net_2.2/Util.cs b/Backup/FCKeditor.Net_2.2/Util.cs new file mode 100644 index 0000000..892a3e5 --- /dev/null +++ b/Backup/FCKeditor.Net_2.2/Util.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: Util.cs + * Useful tools. + * diff --git a/Backup/FCKeditor.Net_2.2/XmlUtil.cs b/Backup/FCKeditor.Net_2.2/XmlUtil.cs new file mode 100644 index 0000000..6404193 --- /dev/null +++ b/Backup/FCKeditor.Net_2.2/XmlUtil.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: XmlUtil.cs + * Useful tools for XML. + * diff --git a/Backup/FCKeditor.Net_2.2/_documentation.html b/Backup/FCKeditor.Net_2.2/_documentation.html new file mode 100644 index 0000000..2d96b60 --- /dev/null +++ b/Backup/FCKeditor.Net_2.2/_documentation.html @@ -0,0 +1,15 @@ + + + + diff --git a/Backup/FCKeditor.Net_2.2/_license.txt b/Backup/FCKeditor.Net_2.2/_license.txt new file mode 100644 index 0000000..8b6a216 --- /dev/null +++ b/Backup/FCKeditor.Net_2.2/_license.txt @@ -0,0 +1,15 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your diff --git a/Backup/FCKeditor.Net_2.2/_whatsnew.html b/Backup/FCKeditor.Net_2.2/_whatsnew.html new file mode 100644 index 0000000..2d96b60 --- /dev/null +++ b/Backup/FCKeditor.Net_2.2/_whatsnew.html @@ -0,0 +1,15 @@ + + + + diff --git a/Backup1/COMP/COMP.csproj b/Backup1/COMP/COMP.csproj new file mode 100644 index 0000000..db649b8 --- /dev/null +++ b/Backup1/COMP/COMP.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 8.0.50727 + 2.0 + {1CEA5581-6A16-4256-890A-24366482D87F} + Library + Properties + COCOWO.COMP + COCOWO.COMP + + + + diff --git a/Backup1/COMP/FTP.cs b/Backup1/COMP/FTP.cs new file mode 100644 index 0000000..afddecb --- /dev/null +++ b/Backup1/COMP/FTP.cs @@ -0,0 +1,15 @@ +using System; +using System.IO; +using System.Configuration; + +namespace COCOWO.COMP +{ + /// + /// 部分FTP类代码来自网络.版式权归原作者所有 + /// + public class FTP + { + public FTP() + { + + } diff --git a/Backup1/COMP/ImageCode.cs b/Backup1/COMP/ImageCode.cs new file mode 100644 index 0000000..ce02e9c --- /dev/null +++ b/Backup1/COMP/ImageCode.cs @@ -0,0 +1,15 @@ +using System; +using System.Drawing; +using System.Drawing.Imaging; +using System.IO; +using System.Drawing.Drawing2D; +using System.Web; +using System.Web.UI; + +namespace COCOWO.COMP +{ + /// + /// ImageLogin 的摘要说明。 + /// + public class ImageLogincs + { diff --git a/Backup1/COMP/Jscript.cs b/Backup1/COMP/Jscript.cs new file mode 100644 index 0000000..72e928d --- /dev/null +++ b/Backup1/COMP/Jscript.cs @@ -0,0 +1,15 @@ +using System; +using System.Web; +using System.Web.UI; + +namespace COCOWO.COMP +{ + /// + /// 一些常用的Js调用 + /// 创建时间:2006-8-3 + /// 创建者:马先光 + /// + public class Jscript + { + + /// diff --git a/Backup1/COMP/MyControl.cs b/Backup1/COMP/MyControl.cs new file mode 100644 index 0000000..0100722 --- /dev/null +++ b/Backup1/COMP/MyControl.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace COCOWO.COMP +{ + /// + /// 对控件的处理类 + /// 创建时间:2006-8-3 + /// 创建者:马先光 + /// + public class MyControl diff --git a/Backup1/COMP/Properties/AssemblyInfo.cs b/Backup1/COMP/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0256cbf --- /dev/null +++ b/Backup1/COMP/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过下列属性集 +// 控制。更改这些属性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("COMP")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("COCOWO")] +[assembly: AssemblyProduct("COMP")] +[assembly: AssemblyCopyright("版权所有 (C) COCOWO 2006")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/Backup1/COMP/QueryString.cs b/Backup1/COMP/QueryString.cs new file mode 100644 index 0000000..62c67d5 --- /dev/null +++ b/Backup1/COMP/QueryString.cs @@ -0,0 +1,15 @@ +using System; +using System.Web; + +namespace COCOWO.COMP +{ + /// + /// ˵������ȡ��ѯ�ַ������� + /// ��д�ߣ����ȹ� + /// Date��2006-4 + /// + public class QueryString + { + public QueryString() + { + // diff --git a/Backup1/COMP/StringUtil.cs b/Backup1/COMP/StringUtil.cs new file mode 100644 index 0000000..e75fe66 --- /dev/null +++ b/Backup1/COMP/StringUtil.cs @@ -0,0 +1,15 @@ +using System; +using System.Drawing; +using System.Data; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Text.RegularExpressions; +using System.IO; +using System.Drawing.Imaging; +using System.Text; +using System.Web.Security; + +namespace COCOWO.COMP +{ + /// diff --git a/Backup1/COMP/UsersInfo.cs b/Backup1/COMP/UsersInfo.cs new file mode 100644 index 0000000..bc5785d --- /dev/null +++ b/Backup1/COMP/UsersInfo.cs @@ -0,0 +1,15 @@ +using System; +using System.Web; + +namespace COCOWO.COMP +{ + public class UsersInfo + { + /// + /// 返回用户ID + /// + static public string GetUserId + { + #region + get + { diff --git a/Backup1/COMP/XmlControl.cs b/Backup1/COMP/XmlControl.cs new file mode 100644 index 0000000..c3646cf --- /dev/null +++ b/Backup1/COMP/XmlControl.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Collections.Generic; +using System.Text; +using System.Xml; +using System.IO; + +namespace COCOWO.COMP +{ + public class XmlControl + { + protected string strXmlFile; + protected XmlDocument objXmlDoc = new XmlDocument(); + + public XmlControl(string XmlFile) diff --git a/Backup1/DB/DB.csproj b/Backup1/DB/DB.csproj new file mode 100644 index 0000000..9f6813c --- /dev/null +++ b/Backup1/DB/DB.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 8.0.50727 + 2.0 + {88550AA5-4D06-4205-93DC-A8DCC0822EE0} + Library + Properties + COCOWO.DB + COCOWO.DB + + + + diff --git a/Backup1/DB/Properties/AssemblyInfo.cs b/Backup1/DB/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..da7e50d --- /dev/null +++ b/Backup1/DB/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过下列属性集 +// 控制。更改这些属性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("DB")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("COCOWO")] +[assembly: AssemblyProduct("DB")] +[assembly: AssemblyCopyright("版权所有 (C) COCOWO 2006")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/Backup1/DB/SQL_DB.cs b/Backup1/DB/SQL_DB.cs new file mode 100644 index 0000000..8d05dc9 --- /dev/null +++ b/Backup1/DB/SQL_DB.cs @@ -0,0 +1,15 @@ +/*��.NET����ACCESS���ݿ�(����,ѹ��,����,�ָ����) +дһ��С�ͳ���,��ͷû��Microsoft Access,��ν������ݿ�,һ����Ȼ��. +��������C:\Program Files\Common Files\System\ado\msadox.dll,��DLL����ADOX�����ռ�; +��������C:\Program Files\Common Files\System\ado\msjro.dll,��DLL����JRO�����ռ� +ע��:�磬����dll���ɹ����ֶ���com��� ����Ϊ .net���������vs.net���ߵ��� + */ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +using System.IO; +using System.Configuration; +using System.Web; +using ADOX; //�������ռ��������ACCESS����(����)--������� ==> ���� ==> �������� ==> �����ҵ�.dll diff --git a/Backup1/DB/SqlDataBase.cs b/Backup1/DB/SqlDataBase.cs new file mode 100644 index 0000000..5bd6617 --- /dev/null +++ b/Backup1/DB/SqlDataBase.cs @@ -0,0 +1,15 @@ +using System; +using System.Web; +using System.Data; +using System.Data.OleDb; +using System.Configuration; + +namespace COCOWO.DB +{ + + /// + /// 数据库操作基类 + /// 实现对Sql数据库的各种操作 + /// 创建时间:2006-8-3 + /// + public class SqlDataBase diff --git a/Backup1/DB/Users.cs b/Backup1/DB/Users.cs new file mode 100644 index 0000000..0f8f493 --- /dev/null +++ b/Backup1/DB/Users.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Web; +using System.Web.UI.WebControls; +using System.Web.UI; +using COCOWO.COMP; + +namespace COCOWO.DB +{ + public class Users :SqlDataBase + { + string strSql = null; + /// diff --git a/Backup1/DB/blog_Category.cs b/Backup1/DB/blog_Category.cs new file mode 100644 index 0000000..9754b34 --- /dev/null +++ b/Backup1/DB/blog_Category.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Category : SqlDataBase + { + /// + /// ��ȡ�����б� + /// + public DataView Category_List() + { diff --git a/Backup1/DB/blog_Comment.cs b/Backup1/DB/blog_Comment.cs new file mode 100644 index 0000000..9578b54 --- /dev/null +++ b/Backup1/DB/blog_Comment.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Web; +using System.Collections.Generic; +using System.Text; +using COCOWO.COMP; + +namespace COCOWO.DB +{ + public class blog_Comment : SqlDataBase + { + + /// + /// ����ȫ��������Ϣ diff --git a/Backup1/DB/blog_Content.cs b/Backup1/DB/blog_Content.cs new file mode 100644 index 0000000..32b6e65 --- /dev/null +++ b/Backup1/DB/blog_Content.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +using System.Web; + + + +namespace COCOWO.DB +{ + public class blog_Content :SqlDataBase + { + blog_tag Blog_tag = new blog_tag(); + blog_Smilies Blog_Smilies = new blog_Smilies(); diff --git a/Backup1/DB/blog_Keywords.cs b/Backup1/DB/blog_Keywords.cs new file mode 100644 index 0000000..deae001 --- /dev/null +++ b/Backup1/DB/blog_Keywords.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Keywords : SqlDataBase + { + /// + /// ��ȡȫ������ + /// + /// + /// diff --git a/Backup1/DB/blog_Links.cs b/Backup1/DB/blog_Links.cs new file mode 100644 index 0000000..0101fac --- /dev/null +++ b/Backup1/DB/blog_Links.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Links : SqlDataBase + { + /// + /// ��ȡLinks�б� + /// + public DataView Links_List() + { diff --git a/Backup1/DB/blog_Smilies.cs b/Backup1/DB/blog_Smilies.cs new file mode 100644 index 0000000..0fed94a --- /dev/null +++ b/Backup1/DB/blog_Smilies.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Smilies : SqlDataBase + { + /// + /// ��ȡȫ������ + /// + /// + /// diff --git a/Backup1/DB/blog_Trackback.cs b/Backup1/DB/blog_Trackback.cs new file mode 100644 index 0000000..e0206bc --- /dev/null +++ b/Backup1/DB/blog_Trackback.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Trackback : SqlDataBase + { + /// + /// ��ȡTrackback�б� + /// + public DataView Trackback_List() + { diff --git a/Backup1/DB/blog_module.cs b/Backup1/DB/blog_module.cs new file mode 100644 index 0000000..d67cc47 --- /dev/null +++ b/Backup1/DB/blog_module.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +using System.Web; +using COCOWO.COMP; +namespace COCOWO.DB +{ + public class blog_module : SqlDataBase + { + /// + /// ģ����� + /// + /// diff --git a/Backup1/DB/blog_spam.cs b/Backup1/DB/blog_spam.cs new file mode 100644 index 0000000..0b82ccc --- /dev/null +++ b/Backup1/DB/blog_spam.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +namespace COCOWO.DB +{ + public class blog_spam : SqlDataBase + { + /// + /// ��ȡspam�б� + /// + public DataView Spam_List() + { + return GetDv("SELECT * FROM blog_spam order by spam_id desc"); diff --git a/Backup1/DB/blog_status.cs b/Backup1/DB/blog_status.cs new file mode 100644 index 0000000..ba97f6b --- /dev/null +++ b/Backup1/DB/blog_status.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_status : SqlDataBase + { + /// + /// ��ȡstatus�б� + /// + public DataView Status_List() + { diff --git a/Backup1/DB/blog_tag.cs b/Backup1/DB/blog_tag.cs new file mode 100644 index 0000000..b9bd6b3 --- /dev/null +++ b/Backup1/DB/blog_tag.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +namespace COCOWO.DB +{ + public class blog_tag : SqlDataBase + { + /// + /// ��ȡtag�б� + /// + public DataView Tag_List() + { + return GetDv("SELECT * FROM blog_tag order by tag_id desc"); diff --git a/Backup1/DB/library.cs b/Backup1/DB/library.cs new file mode 100644 index 0000000..5207dc5 --- /dev/null +++ b/Backup1/DB/library.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; +using System.Data; +using System.Web; +using System.Web.SessionState; +using COCOWO.COMP; + + + +namespace COCOWO.DB +{ + public class library + { + blog_module Blog_module = new blog_module(); diff --git a/Backup1/FCKeditor.Net_2.2/AssemblyInfo.cs b/Backup1/FCKeditor.Net_2.2/AssemblyInfo.cs new file mode 100644 index 0000000..67dab84 --- /dev/null +++ b/Backup1/FCKeditor.Net_2.2/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Security.Permissions ; +using System.Web.UI ; + +[assembly:TagPrefix("FredCK.FCKeditorV2", "FCKeditorV2")] + +[assembly:System.CLSCompliant(true)] +[assembly:System.Runtime.InteropServices.ComVisible(false)] + +// +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +// diff --git a/Backup1/FCKeditor.Net_2.2/FCKeditor.cs b/Backup1/FCKeditor.Net_2.2/FCKeditor.cs new file mode 100644 index 0000000..eb5a87c --- /dev/null +++ b/Backup1/FCKeditor.Net_2.2/FCKeditor.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FCKeditor.cs + * This is the FCKeditor Asp.Net control. + * diff --git a/Backup1/FCKeditor.Net_2.2/FCKeditorConfigurations.cs b/Backup1/FCKeditor.Net_2.2/FCKeditorConfigurations.cs new file mode 100644 index 0000000..74df7d8 --- /dev/null +++ b/Backup1/FCKeditor.Net_2.2/FCKeditorConfigurations.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FCKeditorConfigurations.cs + * Class that holds all editor configurations. + * diff --git a/Backup1/FCKeditor.Net_2.2/FCKeditorDesigner.cs b/Backup1/FCKeditor.Net_2.2/FCKeditorDesigner.cs new file mode 100644 index 0000000..8a80849 --- /dev/null +++ b/Backup1/FCKeditor.Net_2.2/FCKeditorDesigner.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FCKeditorDesigner.cs + * The EditorDesigner class defines the editor visualization at design + * time. diff --git a/Backup1/FCKeditor.Net_2.2/FCKeditorV2.csproj b/Backup1/FCKeditor.Net_2.2/FCKeditorV2.csproj new file mode 100644 index 0000000..d63e3b5 --- /dev/null +++ b/Backup1/FCKeditor.Net_2.2/FCKeditorV2.csproj @@ -0,0 +1,15 @@ + + + Local + 8.0.50727 + 2.0 + {F6F32704-97E0-4006-A474-5A9729C6B1B4} + Debug + AnyCPU + + + + + COCOWO.FCKeditorV2 + + diff --git a/Backup1/FCKeditor.Net_2.2/FileBrowserConnector.cs b/Backup1/FCKeditor.Net_2.2/FileBrowserConnector.cs new file mode 100644 index 0000000..46ca041 --- /dev/null +++ b/Backup1/FCKeditor.Net_2.2/FileBrowserConnector.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FileBrowserConnector.cs + * This is the code behind of the connector.aspx page used by the + * File Browser. diff --git a/Backup1/FCKeditor.Net_2.2/FileWorkerBase.cs b/Backup1/FCKeditor.Net_2.2/FileWorkerBase.cs new file mode 100644 index 0000000..8c390cf --- /dev/null +++ b/Backup1/FCKeditor.Net_2.2/FileWorkerBase.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FileWorkerBase.cs + * Base class used by the FileBrowserConnector and Uploader. + * diff --git a/Backup1/FCKeditor.Net_2.2/Uploader.cs b/Backup1/FCKeditor.Net_2.2/Uploader.cs new file mode 100644 index 0000000..3fe720e --- /dev/null +++ b/Backup1/FCKeditor.Net_2.2/Uploader.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: Uploader.cs + * This is the code behind of the uploader.aspx page used for Quick Uploads. + * diff --git a/Backup1/FCKeditor.Net_2.2/Util.cs b/Backup1/FCKeditor.Net_2.2/Util.cs new file mode 100644 index 0000000..892a3e5 --- /dev/null +++ b/Backup1/FCKeditor.Net_2.2/Util.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: Util.cs + * Useful tools. + * diff --git a/Backup1/FCKeditor.Net_2.2/XmlUtil.cs b/Backup1/FCKeditor.Net_2.2/XmlUtil.cs new file mode 100644 index 0000000..6404193 --- /dev/null +++ b/Backup1/FCKeditor.Net_2.2/XmlUtil.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: XmlUtil.cs + * Useful tools for XML. + * diff --git a/Backup1/FCKeditor.Net_2.2/_documentation.html b/Backup1/FCKeditor.Net_2.2/_documentation.html new file mode 100644 index 0000000..2d96b60 --- /dev/null +++ b/Backup1/FCKeditor.Net_2.2/_documentation.html @@ -0,0 +1,15 @@ + + + + diff --git a/Backup1/FCKeditor.Net_2.2/_license.txt b/Backup1/FCKeditor.Net_2.2/_license.txt new file mode 100644 index 0000000..8b6a216 --- /dev/null +++ b/Backup1/FCKeditor.Net_2.2/_license.txt @@ -0,0 +1,15 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your diff --git a/Backup1/FCKeditor.Net_2.2/_whatsnew.html b/Backup1/FCKeditor.Net_2.2/_whatsnew.html new file mode 100644 index 0000000..2d96b60 --- /dev/null +++ b/Backup1/FCKeditor.Net_2.2/_whatsnew.html @@ -0,0 +1,15 @@ + + + + diff --git a/COMP/.vs/COMP.csproj.dtbcache.json b/COMP/.vs/COMP.csproj.dtbcache.json new file mode 100644 index 0000000..9af38fe --- /dev/null +++ b/COMP/.vs/COMP.csproj.dtbcache.json @@ -0,0 +1 @@ +{"RootPath":"C:\\Users\\coder\\Desktop\\2024Code\\3\\20240306\\update\\PO13ZOKPA79413\\COMP","ProjectFileName":"COMP.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"FTP.cs"},{"SourceFile":"ImageCode.cs"},{"SourceFile":"Jscript.cs"},{"SourceFile":"MyControl.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"QueryString.cs"},{"SourceFile":"StringUtil.cs"},{"SourceFile":"UsersInfo.cs"},{"SourceFile":"XmlControl.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System.Core\\v4.0_4.0.0.0__b77a5c561934e089\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_64\\System.Data\\v4.0_4.0.0.0__b77a5c561934e089\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System\\v4.0_4.0.0.0__b77a5c561934e089\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System.Drawing\\v4.0_4.0.0.0__b03f5f7f11d50a3a\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_64\\System.Web\\v4.0_4.0.0.0__b03f5f7f11d50a3a\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System.Xml\\v4.0_4.0.0.0__b77a5c561934e089\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\3\\20240306\\update\\PO13ZOKPA79413\\COMP\\bin\\Debug\\COCOWO.COMP.dll","OutputItemRelativePath":"COCOWO.COMP.dll"},{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\3\\20240306\\update\\PO13ZOKPA79413\\COMP\\bin\\Debug\\COCOWO.COMP.pdb","OutputItemRelativePath":"COCOWO.COMP.pdb"}],"CopyToOutputEntries":[]} diff --git a/COMP/COMP.csproj b/COMP/COMP.csproj new file mode 100644 index 0000000..db649b8 --- /dev/null +++ b/COMP/COMP.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 8.0.50727 + 2.0 + {1CEA5581-6A16-4256-890A-24366482D87F} + Library + Properties + COCOWO.COMP + COCOWO.COMP + + + + diff --git a/COMP/FTP.cs b/COMP/FTP.cs new file mode 100644 index 0000000..afddecb --- /dev/null +++ b/COMP/FTP.cs @@ -0,0 +1,15 @@ +using System; +using System.IO; +using System.Configuration; + +namespace COCOWO.COMP +{ + /// + /// 部分FTP类代码来自网络.版式权归原作者所有 + /// + public class FTP + { + public FTP() + { + + } diff --git a/COMP/ImageCode.cs b/COMP/ImageCode.cs new file mode 100644 index 0000000..ce02e9c --- /dev/null +++ b/COMP/ImageCode.cs @@ -0,0 +1,15 @@ +using System; +using System.Drawing; +using System.Drawing.Imaging; +using System.IO; +using System.Drawing.Drawing2D; +using System.Web; +using System.Web.UI; + +namespace COCOWO.COMP +{ + /// + /// ImageLogin 的摘要说明。 + /// + public class ImageLogincs + { diff --git a/COMP/Jscript.cs b/COMP/Jscript.cs new file mode 100644 index 0000000..72e928d --- /dev/null +++ b/COMP/Jscript.cs @@ -0,0 +1,15 @@ +using System; +using System.Web; +using System.Web.UI; + +namespace COCOWO.COMP +{ + /// + /// 一些常用的Js调用 + /// 创建时间:2006-8-3 + /// 创建者:马先光 + /// + public class Jscript + { + + /// diff --git a/COMP/MyControl.cs b/COMP/MyControl.cs new file mode 100644 index 0000000..0100722 --- /dev/null +++ b/COMP/MyControl.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace COCOWO.COMP +{ + /// + /// 对控件的处理类 + /// 创建时间:2006-8-3 + /// 创建者:马先光 + /// + public class MyControl diff --git a/COMP/Properties/AssemblyInfo.cs b/COMP/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0256cbf --- /dev/null +++ b/COMP/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过下列属性集 +// 控制。更改这些属性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("COMP")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("COCOWO")] +[assembly: AssemblyProduct("COMP")] +[assembly: AssemblyCopyright("版权所有 (C) COCOWO 2006")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/COMP/QueryString.cs b/COMP/QueryString.cs new file mode 100644 index 0000000..62c67d5 --- /dev/null +++ b/COMP/QueryString.cs @@ -0,0 +1,15 @@ +using System; +using System.Web; + +namespace COCOWO.COMP +{ + /// + /// ˵������ȡ��ѯ�ַ������� + /// ��д�ߣ����ȹ� + /// Date��2006-4 + /// + public class QueryString + { + public QueryString() + { + // diff --git a/COMP/StringUtil.cs b/COMP/StringUtil.cs new file mode 100644 index 0000000..e75fe66 --- /dev/null +++ b/COMP/StringUtil.cs @@ -0,0 +1,15 @@ +using System; +using System.Drawing; +using System.Data; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Text.RegularExpressions; +using System.IO; +using System.Drawing.Imaging; +using System.Text; +using System.Web.Security; + +namespace COCOWO.COMP +{ + /// diff --git a/COMP/UsersInfo.cs b/COMP/UsersInfo.cs new file mode 100644 index 0000000..bc5785d --- /dev/null +++ b/COMP/UsersInfo.cs @@ -0,0 +1,15 @@ +using System; +using System.Web; + +namespace COCOWO.COMP +{ + public class UsersInfo + { + /// + /// 返回用户ID + /// + static public string GetUserId + { + #region + get + { diff --git a/COMP/XmlControl.cs b/COMP/XmlControl.cs new file mode 100644 index 0000000..c3646cf --- /dev/null +++ b/COMP/XmlControl.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Collections.Generic; +using System.Text; +using System.Xml; +using System.IO; + +namespace COCOWO.COMP +{ + public class XmlControl + { + protected string strXmlFile; + protected XmlDocument objXmlDoc = new XmlDocument(); + + public XmlControl(string XmlFile) diff --git a/COMP/obj/COMP.csproj.FileList.txt b/COMP/obj/COMP.csproj.FileList.txt new file mode 100644 index 0000000..ac68955 --- /dev/null +++ b/COMP/obj/COMP.csproj.FileList.txt @@ -0,0 +1,5 @@ +bin\Debug\COCOWO.COMP.dll +bin\Debug\COCOWO.COMP.pdb +obj\Debug\ResolveAssemblyReference.cache +obj\Debug\COCOWO.COMP.dll +obj\Debug\COCOWO.COMP.pdb diff --git a/COMP/obj/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs b/COMP/obj/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs new file mode 100644 index 0000000..5d01041 --- /dev/null +++ b/COMP/obj/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")] diff --git a/COMP/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/COMP/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/COMP/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/COMP/obj/Debug/COMP.csproj.FileListAbsolute.txt b/COMP/obj/Debug/COMP.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d4249d8 --- /dev/null +++ b/COMP/obj/Debug/COMP.csproj.FileListAbsolute.txt @@ -0,0 +1,6 @@ +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\COMP\bin\Debug\COCOWO.COMP.dll +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\COMP\bin\Debug\COCOWO.COMP.pdb +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\COMP\obj\Debug\COMP.csproj.AssemblyReference.cache +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\COMP\obj\Debug\COMP.csproj.CoreCompileInputs.cache +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\COMP\obj\Debug\COCOWO.COMP.dll +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\COMP\obj\Debug\COCOWO.COMP.pdb diff --git a/DB/51aspx源码必读.txt b/DB/51aspx源码必读.txt new file mode 100644 index 0000000..0a5304a --- /dev/null +++ b/DB/51aspx源码必读.txt @@ -0,0 +1,66 @@ +COCOWO1.0开源博客源码 + +一、源码描述 + +环境:VS2022 Access +二、功能介绍 + +COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码 +COCOWO1.0开源博客源码 多浏览器兼容,能够很好得兼容Mozilla,IE等浏览器 +功能强大的文章编辑器,同时兼容两种编辑方式.在线编辑器采用FckEditor. +COCOWOBLOG采用的UBB编辑器由Blog作者独立开发.支持自定义面板和CSS.自带HTML转换UBB代码功能 +自定义模块.可以自己修改页面上的的布局. 让不懂制作网页的用户也能自己增加和修改页面上的版块. +Skin功能,随时可以给自己的Blog换上新的CSS样式界面 +自定义分类.可以同时定制外部连接分类和Blog内置分类.可以自定义分类显示的位置.由用户自己定义顶部导航条和侧边导航条 +权限分组.管理员还可以对每个分组成员指定上传文件的权限等等 +Blog数据采用缓存方式保存.减轻服务器负担和增加运行速度 + +后台功能: +1、后台首页 +2、站点基本设置 +3、日志分类管理 +4、评论留言管理 +5、界面与插件 +6、数据库与附件 +7、帐户与权限 +8、友情链接管理 +9、表情与关键字 +10、服务器信息 + +前台: +系统管理 +发表新日志 +修改个人资料 +退出系统 + + + +三、注意事项 +1、管理员账号与密码:admin 51aspx 。 +2、ctrl+F5运行即可。 +3、VS内置IIS设置为32位来运行。 + + + + + +作者: cocowo + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/PO13ZOKPA79413 +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: 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/DB/DB.csproj b/DB/DB.csproj new file mode 100644 index 0000000..9f6813c --- /dev/null +++ b/DB/DB.csproj @@ -0,0 +1,15 @@ + + + Debug + AnyCPU + 8.0.50727 + 2.0 + {88550AA5-4D06-4205-93DC-A8DCC0822EE0} + Library + Properties + COCOWO.DB + COCOWO.DB + + + + diff --git a/DB/Properties/AssemblyInfo.cs b/DB/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..da7e50d --- /dev/null +++ b/DB/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 有关程序集的常规信息通过下列属性集 +// 控制。更改这些属性值可修改 +// 与程序集关联的信息。 +[assembly: AssemblyTitle("DB")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("COCOWO")] +[assembly: AssemblyProduct("DB")] +[assembly: AssemblyCopyright("版权所有 (C) COCOWO 2006")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] diff --git a/DB/SQL_DB.cs b/DB/SQL_DB.cs new file mode 100644 index 0000000..8d05dc9 --- /dev/null +++ b/DB/SQL_DB.cs @@ -0,0 +1,15 @@ +/*��.NET����ACCESS���ݿ�(����,ѹ��,����,�ָ����) +дһ��С�ͳ���,��ͷû��Microsoft Access,��ν������ݿ�,һ����Ȼ��. +��������C:\Program Files\Common Files\System\ado\msadox.dll,��DLL����ADOX�����ռ�; +��������C:\Program Files\Common Files\System\ado\msjro.dll,��DLL����JRO�����ռ� +ע��:�磬����dll���ɹ����ֶ���com��� ����Ϊ .net���������vs.net���ߵ��� + */ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +using System.IO; +using System.Configuration; +using System.Web; +using ADOX; //�������ռ��������ACCESS����(����)--������� ==> ���� ==> �������� ==> �����ҵ�.dll diff --git a/DB/SqlDataBase.cs b/DB/SqlDataBase.cs new file mode 100644 index 0000000..5bd6617 --- /dev/null +++ b/DB/SqlDataBase.cs @@ -0,0 +1,15 @@ +using System; +using System.Web; +using System.Data; +using System.Data.OleDb; +using System.Configuration; + +namespace COCOWO.DB +{ + + /// + /// 数据库操作基类 + /// 实现对Sql数据库的各种操作 + /// 创建时间:2006-8-3 + /// + public class SqlDataBase diff --git a/DB/Users.cs b/DB/Users.cs new file mode 100644 index 0000000..0f8f493 --- /dev/null +++ b/DB/Users.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Web; +using System.Web.UI.WebControls; +using System.Web.UI; +using COCOWO.COMP; + +namespace COCOWO.DB +{ + public class Users :SqlDataBase + { + string strSql = null; + /// diff --git a/DB/blog_Category.cs b/DB/blog_Category.cs new file mode 100644 index 0000000..9754b34 --- /dev/null +++ b/DB/blog_Category.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Category : SqlDataBase + { + /// + /// ��ȡ�����б� + /// + public DataView Category_List() + { diff --git a/DB/blog_Comment.cs b/DB/blog_Comment.cs new file mode 100644 index 0000000..9578b54 --- /dev/null +++ b/DB/blog_Comment.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Web; +using System.Collections.Generic; +using System.Text; +using COCOWO.COMP; + +namespace COCOWO.DB +{ + public class blog_Comment : SqlDataBase + { + + /// + /// ����ȫ��������Ϣ diff --git a/DB/blog_Content.cs b/DB/blog_Content.cs new file mode 100644 index 0000000..32b6e65 --- /dev/null +++ b/DB/blog_Content.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +using System.Web; + + + +namespace COCOWO.DB +{ + public class blog_Content :SqlDataBase + { + blog_tag Blog_tag = new blog_tag(); + blog_Smilies Blog_Smilies = new blog_Smilies(); diff --git a/DB/blog_Keywords.cs b/DB/blog_Keywords.cs new file mode 100644 index 0000000..deae001 --- /dev/null +++ b/DB/blog_Keywords.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Keywords : SqlDataBase + { + /// + /// ��ȡȫ������ + /// + /// + /// diff --git a/DB/blog_Links.cs b/DB/blog_Links.cs new file mode 100644 index 0000000..0101fac --- /dev/null +++ b/DB/blog_Links.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Links : SqlDataBase + { + /// + /// ��ȡLinks�б� + /// + public DataView Links_List() + { diff --git a/DB/blog_Smilies.cs b/DB/blog_Smilies.cs new file mode 100644 index 0000000..0fed94a --- /dev/null +++ b/DB/blog_Smilies.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Smilies : SqlDataBase + { + /// + /// ��ȡȫ������ + /// + /// + /// diff --git a/DB/blog_Trackback.cs b/DB/blog_Trackback.cs new file mode 100644 index 0000000..e0206bc --- /dev/null +++ b/DB/blog_Trackback.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_Trackback : SqlDataBase + { + /// + /// ��ȡTrackback�б� + /// + public DataView Trackback_List() + { diff --git a/DB/blog_module.cs b/DB/blog_module.cs new file mode 100644 index 0000000..d67cc47 --- /dev/null +++ b/DB/blog_module.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +using System.Web; +using COCOWO.COMP; +namespace COCOWO.DB +{ + public class blog_module : SqlDataBase + { + /// + /// ģ����� + /// + /// diff --git a/DB/blog_spam.cs b/DB/blog_spam.cs new file mode 100644 index 0000000..0b82ccc --- /dev/null +++ b/DB/blog_spam.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +namespace COCOWO.DB +{ + public class blog_spam : SqlDataBase + { + /// + /// ��ȡspam�б� + /// + public DataView Spam_List() + { + return GetDv("SELECT * FROM blog_spam order by spam_id desc"); diff --git a/DB/blog_status.cs b/DB/blog_status.cs new file mode 100644 index 0000000..ba97f6b --- /dev/null +++ b/DB/blog_status.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; + +namespace COCOWO.DB +{ + public class blog_status : SqlDataBase + { + /// + /// ��ȡstatus�б� + /// + public DataView Status_List() + { diff --git a/DB/blog_tag.cs b/DB/blog_tag.cs new file mode 100644 index 0000000..b9bd6b3 --- /dev/null +++ b/DB/blog_tag.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Data.SqlClient; +using System.Collections.Generic; +using System.Text; +namespace COCOWO.DB +{ + public class blog_tag : SqlDataBase + { + /// + /// ��ȡtag�б� + /// + public DataView Tag_List() + { + return GetDv("SELECT * FROM blog_tag order by tag_id desc"); diff --git a/DB/library.cs b/DB/library.cs new file mode 100644 index 0000000..5207dc5 --- /dev/null +++ b/DB/library.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; +using System.Data; +using System.Web; +using System.Web.SessionState; +using COCOWO.COMP; + + + +namespace COCOWO.DB +{ + public class library + { + blog_module Blog_module = new blog_module(); diff --git a/DB/obj/DB.csproj.FileList.txt b/DB/obj/DB.csproj.FileList.txt new file mode 100644 index 0000000..00c4f35 --- /dev/null +++ b/DB/obj/DB.csproj.FileList.txt @@ -0,0 +1,14 @@ +obj\Debug\ResolveAssemblyReference.cache +bin\Debug\COCOWO.DB.dll +bin\Debug\COCOWO.DB.pdb +obj\Debug\COCOWO.DB.dll +obj\Debug\COCOWO.DB.pdb +bin\Debug\COCOWO.COMP.dll +bin\Debug\COCOWO.COMP.pdb +bin\Debug\Interop.ADODB.dll +bin\Debug\Interop.ADOX.dll +bin\Debug\Interop.JRO.dll +obj\Debug\Interop.ADODB.dll +obj\Debug\Interop.ADOX.dll +obj\Debug\Interop.JRO.dll +obj\Debug\DB.csproj.ResolveComReference.cache diff --git a/DB/obj/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs b/DB/obj/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs new file mode 100644 index 0000000..5d01041 --- /dev/null +++ b/DB/obj/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")] diff --git a/DB/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/DB/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/DB/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/DB/obj/Debug/DB.csproj.FileListAbsolute.txt b/DB/obj/Debug/DB.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..4eb7c28 --- /dev/null +++ b/DB/obj/Debug/DB.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\bin\Debug\COCOWO.DB.dll +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\bin\Debug\COCOWO.DB.pdb +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\bin\Debug\COCOWO.COMP.dll +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\bin\Debug\COCOWO.COMP.pdb +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\bin\Debug\Interop.ADODB.dll +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\bin\Debug\Interop.ADOX.dll +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\bin\Debug\Interop.JRO.dll +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\obj\Debug\DB.csproj.AssemblyReference.cache +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\obj\Debug\Interop.ADODB.dll +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\obj\Debug\Interop.ADOX.dll +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\obj\Debug\Interop.JRO.dll +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\obj\Debug\DB.csproj.ResolveComReference.cache +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\obj\Debug\DB.csproj.CoreCompileInputs.cache +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\obj\Debug\DB.csproj.CopyComplete +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\DB\obj\Debug\COCOWO.DB.dll diff --git a/FCKeditor.Net_2.2/.vs/FCKeditorV2.csproj.dtbcache.json b/FCKeditor.Net_2.2/.vs/FCKeditorV2.csproj.dtbcache.json new file mode 100644 index 0000000..a0652c3 --- /dev/null +++ b/FCKeditor.Net_2.2/.vs/FCKeditorV2.csproj.dtbcache.json @@ -0,0 +1 @@ +{"RootPath":"C:\\Users\\coder\\Desktop\\2024Code\\3\\20240306\\update\\PO13ZOKPA79413\\FCKeditor.Net_2.2","ProjectFileName":"FCKeditorV2.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"AssemblyInfo.cs"},{"SourceFile":"FCKeditor.cs"},{"SourceFile":"FCKeditorConfigurations.cs"},{"SourceFile":"FCKeditorDesigner.cs"},{"SourceFile":"FileBrowserConnector.cs"},{"SourceFile":"FileWorkerBase.cs"},{"SourceFile":"Uploader.cs"},{"SourceFile":"Util.cs"},{"SourceFile":"XmlUtil.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System.Core\\v4.0_4.0.0.0__b77a5c561934e089\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_64\\System.Data\\v4.0_4.0.0.0__b77a5c561934e089\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System.Design\\v4.0_4.0.0.0__b03f5f7f11d50a3a\\System.Design.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System\\v4.0_4.0.0.0__b77a5c561934e089\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System.Drawing\\v4.0_4.0.0.0__b03f5f7f11d50a3a\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_64\\System.Web\\v4.0_4.0.0.0__b03f5f7f11d50a3a\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Windows\\Microsoft.Net\\assembly\\GAC_MSIL\\System.Xml\\v4.0_4.0.0.0__b77a5c561934e089\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\3\\20240306\\update\\PO13ZOKPA79413\\FCKeditor.Net_2.2\\bin\\Debug\\COCOWO.FCKeditorV2.dll","OutputItemRelativePath":"COCOWO.FCKeditorV2.dll"},{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\3\\20240306\\update\\PO13ZOKPA79413\\FCKeditor.Net_2.2\\bin\\Debug\\COCOWO.FCKeditorV2.pdb","OutputItemRelativePath":"COCOWO.FCKeditorV2.pdb"}],"CopyToOutputEntries":[]} diff --git a/FCKeditor.Net_2.2/51aspx源码必读.txt b/FCKeditor.Net_2.2/51aspx源码必读.txt new file mode 100644 index 0000000..0a5304a --- /dev/null +++ b/FCKeditor.Net_2.2/51aspx源码必读.txt @@ -0,0 +1,66 @@ +COCOWO1.0开源博客源码 + +一、源码描述 + +环境:VS2022 Access +二、功能介绍 + +COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码COCOWO1.0开源博客源码 +COCOWO1.0开源博客源码 多浏览器兼容,能够很好得兼容Mozilla,IE等浏览器 +功能强大的文章编辑器,同时兼容两种编辑方式.在线编辑器采用FckEditor. +COCOWOBLOG采用的UBB编辑器由Blog作者独立开发.支持自定义面板和CSS.自带HTML转换UBB代码功能 +自定义模块.可以自己修改页面上的的布局. 让不懂制作网页的用户也能自己增加和修改页面上的版块. +Skin功能,随时可以给自己的Blog换上新的CSS样式界面 +自定义分类.可以同时定制外部连接分类和Blog内置分类.可以自定义分类显示的位置.由用户自己定义顶部导航条和侧边导航条 +权限分组.管理员还可以对每个分组成员指定上传文件的权限等等 +Blog数据采用缓存方式保存.减轻服务器负担和增加运行速度 + +后台功能: +1、后台首页 +2、站点基本设置 +3、日志分类管理 +4、评论留言管理 +5、界面与插件 +6、数据库与附件 +7、帐户与权限 +8、友情链接管理 +9、表情与关键字 +10、服务器信息 + +前台: +系统管理 +发表新日志 +修改个人资料 +退出系统 + + + +三、注意事项 +1、管理员账号与密码:admin 51aspx 。 +2、ctrl+F5运行即可。 +3、VS内置IIS设置为32位来运行。 + + + + + +作者: cocowo + +如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/PO13ZOKPA79413 +------------------------------------------------------------------------------------------------ + + 源码服务专家 + 官网: 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/FCKeditor.Net_2.2/AssemblyInfo.cs b/FCKeditor.Net_2.2/AssemblyInfo.cs new file mode 100644 index 0000000..67dab84 --- /dev/null +++ b/FCKeditor.Net_2.2/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Security.Permissions ; +using System.Web.UI ; + +[assembly:TagPrefix("FredCK.FCKeditorV2", "FCKeditorV2")] + +[assembly:System.CLSCompliant(true)] +[assembly:System.Runtime.InteropServices.ComVisible(false)] + +// +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +// diff --git a/FCKeditor.Net_2.2/FCKeditor.cs b/FCKeditor.Net_2.2/FCKeditor.cs new file mode 100644 index 0000000..eb5a87c --- /dev/null +++ b/FCKeditor.Net_2.2/FCKeditor.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FCKeditor.cs + * This is the FCKeditor Asp.Net control. + * diff --git a/FCKeditor.Net_2.2/FCKeditorConfigurations.cs b/FCKeditor.Net_2.2/FCKeditorConfigurations.cs new file mode 100644 index 0000000..74df7d8 --- /dev/null +++ b/FCKeditor.Net_2.2/FCKeditorConfigurations.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FCKeditorConfigurations.cs + * Class that holds all editor configurations. + * diff --git a/FCKeditor.Net_2.2/FCKeditorDesigner.cs b/FCKeditor.Net_2.2/FCKeditorDesigner.cs new file mode 100644 index 0000000..8a80849 --- /dev/null +++ b/FCKeditor.Net_2.2/FCKeditorDesigner.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FCKeditorDesigner.cs + * The EditorDesigner class defines the editor visualization at design + * time. diff --git a/FCKeditor.Net_2.2/FCKeditorV2.csproj b/FCKeditor.Net_2.2/FCKeditorV2.csproj new file mode 100644 index 0000000..d63e3b5 --- /dev/null +++ b/FCKeditor.Net_2.2/FCKeditorV2.csproj @@ -0,0 +1,15 @@ + + + Local + 8.0.50727 + 2.0 + {F6F32704-97E0-4006-A474-5A9729C6B1B4} + Debug + AnyCPU + + + + + COCOWO.FCKeditorV2 + + diff --git a/FCKeditor.Net_2.2/FileBrowserConnector.cs b/FCKeditor.Net_2.2/FileBrowserConnector.cs new file mode 100644 index 0000000..46ca041 --- /dev/null +++ b/FCKeditor.Net_2.2/FileBrowserConnector.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FileBrowserConnector.cs + * This is the code behind of the connector.aspx page used by the + * File Browser. diff --git a/FCKeditor.Net_2.2/FileWorkerBase.cs b/FCKeditor.Net_2.2/FileWorkerBase.cs new file mode 100644 index 0000000..8c390cf --- /dev/null +++ b/FCKeditor.Net_2.2/FileWorkerBase.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: FileWorkerBase.cs + * Base class used by the FileBrowserConnector and Uploader. + * diff --git a/FCKeditor.Net_2.2/Uploader.cs b/FCKeditor.Net_2.2/Uploader.cs new file mode 100644 index 0000000..3fe720e --- /dev/null +++ b/FCKeditor.Net_2.2/Uploader.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: Uploader.cs + * This is the code behind of the uploader.aspx page used for Quick Uploads. + * diff --git a/FCKeditor.Net_2.2/Util.cs b/FCKeditor.Net_2.2/Util.cs new file mode 100644 index 0000000..892a3e5 --- /dev/null +++ b/FCKeditor.Net_2.2/Util.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: Util.cs + * Useful tools. + * diff --git a/FCKeditor.Net_2.2/XmlUtil.cs b/FCKeditor.Net_2.2/XmlUtil.cs new file mode 100644 index 0000000..6404193 --- /dev/null +++ b/FCKeditor.Net_2.2/XmlUtil.cs @@ -0,0 +1,15 @@ +/* + * FCKeditor - The text editor for internet + * Copyright (C) 2003-2005 Frederico Caldeira Knabben + * + * Licensed under the terms of the GNU Lesser General Public License: + * http://www.opensource.org/licenses/lgpl-license.php + * + * For further information visit: + * http://www.fckeditor.net/ + * + * "Support Open Source software. What about a donation today?" + * + * File Name: XmlUtil.cs + * Useful tools for XML. + * diff --git a/FCKeditor.Net_2.2/_documentation.html b/FCKeditor.Net_2.2/_documentation.html new file mode 100644 index 0000000..2d96b60 --- /dev/null +++ b/FCKeditor.Net_2.2/_documentation.html @@ -0,0 +1,15 @@ + + + + diff --git a/FCKeditor.Net_2.2/_license.txt b/FCKeditor.Net_2.2/_license.txt new file mode 100644 index 0000000..8b6a216 --- /dev/null +++ b/FCKeditor.Net_2.2/_license.txt @@ -0,0 +1,15 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your diff --git a/FCKeditor.Net_2.2/_whatsnew.html b/FCKeditor.Net_2.2/_whatsnew.html new file mode 100644 index 0000000..2d96b60 --- /dev/null +++ b/FCKeditor.Net_2.2/_whatsnew.html @@ -0,0 +1,15 @@ + + + + diff --git a/FCKeditor.Net_2.2/obj/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs b/FCKeditor.Net_2.2/obj/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs new file mode 100644 index 0000000..5d01041 --- /dev/null +++ b/FCKeditor.Net_2.2/obj/Debug/.NETFramework,Version=v4.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")] diff --git a/FCKeditor.Net_2.2/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/FCKeditor.Net_2.2/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/FCKeditor.Net_2.2/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/FCKeditor.Net_2.2/obj/Debug/FCKeditorV2.csproj.FileListAbsolute.txt b/FCKeditor.Net_2.2/obj/Debug/FCKeditorV2.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..1ed4d80 --- /dev/null +++ b/FCKeditor.Net_2.2/obj/Debug/FCKeditorV2.csproj.FileListAbsolute.txt @@ -0,0 +1,6 @@ +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\FCKeditor.Net_2.2\bin\Debug\COCOWO.FCKeditorV2.dll +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\FCKeditor.Net_2.2\bin\Debug\COCOWO.FCKeditorV2.pdb +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\FCKeditor.Net_2.2\obj\Debug\FCKeditorV2.csproj.AssemblyReference.cache +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\FCKeditor.Net_2.2\obj\Debug\FCKeditorV2.csproj.CoreCompileInputs.cache +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\FCKeditor.Net_2.2\obj\Debug\COCOWO.FCKeditorV2.dll +C:\Users\coder\Desktop\2024Code\3\20240306\update\PO13ZOKPA79413\FCKeditor.Net_2.2\obj\Debug\COCOWO.FCKeditorV2.pdb diff --git a/FCKeditor.Net_2.2/obj/FCKeditorV2.csproj.FileList.txt b/FCKeditor.Net_2.2/obj/FCKeditorV2.csproj.FileList.txt new file mode 100644 index 0000000..ac73233 --- /dev/null +++ b/FCKeditor.Net_2.2/obj/FCKeditorV2.csproj.FileList.txt @@ -0,0 +1,5 @@ +bin\Debug\COCOWO.FCKeditorV2.dll +bin\Debug\COCOWO.FCKeditorV2.pdb +obj\Debug\ResolveAssemblyReference.cache +obj\Debug\COCOWO.FCKeditorV2.dll +obj\Debug\COCOWO.FCKeditorV2.pdb 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 + + + +

GNU Lesser General Public License

+ +

Version 2.1, February 1999

+
+

Copyright (C) 1991, 1999 Free Software Foundation, Inc. 59 Temple Place, Suite diff --git a/Web/FCKeditor/editor/dialog/fck_anchor.html b/Web/FCKeditor/editor/dialog/fck_anchor.html new file mode 100644 index 0000000..192d681 --- /dev/null +++ b/Web/FCKeditor/editor/dialog/fck_anchor.html @@ -0,0 +1,15 @@ + + + /layout.css" type="text/css" media="all" /> + /typography.css" type="text/css" media="all" /> + /link.css" type="text/css" media="all" /> + /UBB/editor.css" type="text/css" media="all" /> + + + diff --git a/Web/MasterPage.master.cs b/Web/MasterPage.master.cs new file mode 100644 index 0000000..a543606 --- /dev/null +++ b/Web/MasterPage.master.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; +using COCOWO.DB; +using COCOWO.COMP; + +public partial class MasterPage : System.Web.UI.MasterPage +{ diff --git a/Web/MasterUser.master b/Web/MasterUser.master new file mode 100644 index 0000000..d291e7e --- /dev/null +++ b/Web/MasterUser.master @@ -0,0 +1,15 @@ +<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterUser.master.cs" Inherits="MasterUser" %> + + + + + + <%=Application["SiteName"]%> + /global.css" type="text/css" media="all" /> + /layout.css" type="text/css" media="all" /> + /typography.css" type="text/css" media="all" /> + /link.css" type="text/css" media="all" /> + /UBB/editor.css" type="text/css" media="all" /> + + + diff --git a/Web/MasterUser.master.cs b/Web/MasterUser.master.cs new file mode 100644 index 0000000..0c8c68a --- /dev/null +++ b/Web/MasterUser.master.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; +using COCOWO.DB; +using COCOWO.COMP; + +public partial class MasterUser : System.Web.UI.MasterPage +{ diff --git a/Web/UpFiles.aspx b/Web/UpFiles.aspx new file mode 100644 index 0000000..aa40733 --- /dev/null +++ b/Web/UpFiles.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="UpFiles.aspx.cs" Inherits="UpFiles" %> + + + + + + 无标题页 + + diff --git a/Web/UpFiles.aspx.cs b/Web/UpFiles.aspx.cs new file mode 100644 index 0000000..0e74e62 --- /dev/null +++ b/Web/UpFiles.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; +using COCOWO.DB; +using COCOWO.COMP; + +public partial class UpFiles : System.Web.UI.Page +{ diff --git a/Web/article.aspx b/Web/article.aspx new file mode 100644 index 0000000..41b2292 --- /dev/null +++ b/Web/article.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="article.aspx.cs" Inherits="article" %> + +<%@ Register Src="common/MultiPage.ascx" TagName="MultiPage" TagPrefix="uc2" %> + +<%@ Register Src="common/UBBconfigl.ascx" TagName="UBBconfigl" TagPrefix="uc1" %> + +

+
+
+ 订阅所有<%=mydv21%>的日志 订阅 + 上一篇 + 下一篇 +
+ <%=mydv21%> +
diff --git a/Web/article.aspx.cs b/Web/article.aspx.cs new file mode 100644 index 0000000..f714951 --- /dev/null +++ b/Web/article.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; +using COCOWO.DB; +using COCOWO.COMP; + +public partial class article : System.Web.UI.Page +{ diff --git a/Web/bloglink.aspx b/Web/bloglink.aspx new file mode 100644 index 0000000..6d46426 --- /dev/null +++ b/Web/bloglink.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="bloglink.aspx.cs" Inherits="bloglink" %> + +
+
+

图象链接

+
+
+ + +   + +  
+
+

文字链接

+
diff --git a/Web/bloglink.aspx.cs b/Web/bloglink.aspx.cs new file mode 100644 index 0000000..27c3c1d --- /dev/null +++ b/Web/bloglink.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; +using COCOWO.COMP; +using COCOWO.DB; + +public partial class bloglink : System.Web.UI.Page +{ diff --git a/Web/blogpost.aspx b/Web/blogpost.aspx new file mode 100644 index 0000000..7cf5cc2 --- /dev/null +++ b/Web/blogpost.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" MasterPageFile="~/MasterUser.master" AutoEventWireup="true" CodeFile="blogpost.aspx.cs" Inherits="blogpost" %> + +<%@ Register Assembly="COCOWO.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %> + +<%@ Register Src="common/UBBconfigl.ascx" TagName="UBBconfigl" TagPrefix="uc1" %> + + +
+
发表日志 - 选择分类
+
+ + + + diff --git a/Web/blogpost.aspx.cs b/Web/blogpost.aspx.cs new file mode 100644 index 0000000..9fc9b46 --- /dev/null +++ b/Web/blogpost.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; +using COCOWO.COMP; +using COCOWO.DB; + +public partial class blogpost : System.Web.UI.Page +{ diff --git a/Web/common/CheckCode.aspx b/Web/common/CheckCode.aspx new file mode 100644 index 0000000..84b4206 --- /dev/null +++ b/Web/common/CheckCode.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CheckCode.aspx.cs" Inherits="common_CheckCode" %> + + + + + + 无标题页 + + + +
+ +
+ + diff --git a/Web/common/CheckCode.aspx.cs b/Web/common/CheckCode.aspx.cs new file mode 100644 index 0000000..2246058 --- /dev/null +++ b/Web/common/CheckCode.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; +using System.Drawing; + +public partial class common_CheckCode : System.Web.UI.Page +{ + private void Page_Load(object sender, System.EventArgs e) diff --git a/Web/common/Code/AS.css b/Web/common/Code/AS.css new file mode 100644 index 0000000..09cd229 --- /dev/null +++ b/Web/common/Code/AS.css @@ -0,0 +1,15 @@ +.AS_Default { + color: #000000; + font-family: Courier New; + font-size: 12px; +} +.AS_Comments { + color: #008080; + font-family: Courier New; + font-size: 12px; +} +.AS_String { + color: #ff00ff; + font-family: Courier New; + font-size: 12px; +} diff --git a/Web/common/Code/ActionScript.js b/Web/common/Code/ActionScript.js new file mode 100644 index 0000000..1239024 --- /dev/null +++ b/Web/common/Code/ActionScript.js @@ -0,0 +1,15 @@ +/*********************************************** +* Flash ActionScript Syntax Definition +***********************************************/ +FCSyntaxDef ["AS"] = { + name : "ActionScript", + delimiters : "~!%^&*()-+=|\\/{}[]:;\"'<>,.?", + comments : "//", + cmtcolor : "#008080", + blocks : { + String : { + name : "�ַ���", + color : "#ff00ff", + begin : "\"", + end : "\"", + escape : "\\" diff --git a/Web/common/Code/C_CPP.css b/Web/common/Code/C_CPP.css new file mode 100644 index 0000000..e29a25e --- /dev/null +++ b/Web/common/Code/C_CPP.css @@ -0,0 +1,15 @@ +.CPP_Default { + color: #000000; + font-family: Courier New; + font-size: 12px; +} +.CPP_Comments { + color: #008080; + font-family: Courier New; + font-size: 12px; +} +.CPP_String { + color: #ff00ff; + font-family: Courier New; + font-size: 12px; +} diff --git a/Web/common/Code/C_Cpp.js b/Web/common/Code/C_Cpp.js new file mode 100644 index 0000000..d0d19c2 --- /dev/null +++ b/Web/common/Code/C_Cpp.js @@ -0,0 +1,15 @@ +/************************************* +* C/C++ Syntax Definition +*************************************/ +FCSyntaxDef ["CPP"] = { + name : "C/C++", + delimiters : "~!%^&*()-+=|\\/{}[]:;\"'<>,.?", + comments : "//", + cmtcolor : "#008080", + blocks : { + String : { + name : "�ַ���", + color : "#ff00ff", + begin : "\"", + end : "\"", + escape : "\\" diff --git a/Web/common/Code/ColdFusion.js b/Web/common/Code/ColdFusion.js new file mode 100644 index 0000000..80f32ae --- /dev/null +++ b/Web/common/Code/ColdFusion.js @@ -0,0 +1,15 @@ +/*********************************************** +* ColdFustion Syntax Definition +***********************************************/ +FCSyntaxDef ["CFM"] = { + name : "UBB ActionScript", + nocase : false, + delimiters : "~!@%^&*()-+=|\\/{}[]:;\"'<>,.?", + comments : "//", + cmtcolor : "#008080", + cmtstyle : "i", + blocks : { + String : { + name : "�ַ���", + color : "#ff00ff", + begin : "\"", diff --git a/Web/common/Code/Doc.js b/Web/common/Code/Doc.js new file mode 100644 index 0000000..e37afd3 --- /dev/null +++ b/Web/common/Code/Doc.js @@ -0,0 +1,15 @@ +/************************************* +* Document Syntax Definition +*************************************/ +FCSyntaxDef ["DOC"] = { + name : "Document", + delimiters : "~!%^&*()-+=|\\/{}[]:;\"'<>,.?�򣭡�������", + comments : "----- *****", + cmtcolor : "#008080", + blocks : { + Title : { + name : "����", + color : "#A80000", + style : "bu", + begin : "��", + end : "��" diff --git a/Web/common/Code/FancyCoder.js b/Web/common/Code/FancyCoder.js new file mode 100644 index 0000000..88d2d2a --- /dev/null +++ b/Web/common/Code/FancyCoder.js @@ -0,0 +1,15 @@ +/*********************************************** +* ����JS�� - FancyCoder for JavaScript +* version 1.0 beta +***********************************************/ + +//����﷨���������壬������Ӧ���� +//lang: ��Ϊ0����������ID���ֱ��ʾ������Ҫ�������ԣ������д���ʾ������� +function FCCheckSyntaxDef(/*lang, ...*/) { + //�趨�����б� + if (arguments.length > 0) { + var langList = {}; + for (var i = arguments.length - 1; i >= 0; i--) { + if (FCSyntaxDef[arguments[i]] != null) langList[arguments[i]] = true; + } + } else { diff --git a/Web/common/Code/XML.css b/Web/common/Code/XML.css new file mode 100644 index 0000000..aa63d3c --- /dev/null +++ b/Web/common/Code/XML.css @@ -0,0 +1,15 @@ +.XML_Default { + color: #000000; + font-family: Courier New; + font-size: 12px; +} +.XML_BlockComment { + color: #008080; + font-family: Courier New; + font-size: 12px; +} +.XML_BlockText { + color: #808080; + font-family: Courier New; + font-size: 12px; +} diff --git a/Web/common/Code/XML.js b/Web/common/Code/XML.js new file mode 100644 index 0000000..df0c8fb --- /dev/null +++ b/Web/common/Code/XML.js @@ -0,0 +1,15 @@ +/************************************* +* XML Syntax Definition +*************************************/ +FCSyntaxDef ["XML"] = { + name : "XML", + delimiters : "!=\"", + blocks : { + BlockComment : { + name : "��ע��", + color : "#008080", + begin : "", + lines : true + }, + BlockText : { diff --git a/Web/common/Code/code.htm b/Web/common/Code/code.htm new file mode 100644 index 0000000..4831e2f --- /dev/null +++ b/Web/common/Code/code.htm @@ -0,0 +1,15 @@ + + + +����JS�� + + + + + + + + +
选择日志分类:  +
+ +
+


+

+ + diff --git a/Web/common/UPFiles.ascx.cs b/Web/common/UPFiles.ascx.cs new file mode 100644 index 0000000..dd9a09d --- /dev/null +++ b/Web/common/UPFiles.ascx.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; + +public partial class common_UPFiles : System.Web.UI.UserControl +{ + ///

+ /// UpLoad 的摘要说明。 diff --git a/Web/common/common.js b/Web/common/common.js new file mode 100644 index 0000000..425886f --- /dev/null +++ b/Web/common/common.js @@ -0,0 +1,15 @@ +//PBlog2 公用JS代码 +//Author:PuterJam + +//查找网页内宽度太大的图片进行缩放以及PNG纠正 + function ReImgSize(){ + for (i=0;i500) + { + document.images[i].width="500" + document.images[i].outerHTML=''+document.images[i].outerHTML+'' + } + } + else{ diff --git a/Web/common/control.css b/Web/common/control.css new file mode 100644 index 0000000..7bbd3f7 --- /dev/null +++ b/Web/common/control.css @@ -0,0 +1,15 @@ +body{ + margin:0px; +} +a:link,a:visited{ + text-decoration:none; + color:#006 +} +a:hover{ + text-decoration:underline; + color:#0033CC +} +.headbody{ + background:url('../images/Control/HeadBack.jpg') +} +.headmain{ diff --git a/Web/common/control.js b/Web/common/control.js new file mode 100644 index 0000000..93513ac --- /dev/null +++ b/Web/common/control.js @@ -0,0 +1,15 @@ +//========================================== +// JS For PJBlog2 Background Control +// By PuterJam 2006-6-10 +//========================================== + + function CheckMove(){ + if (document.forms[0].source.value=="null") { + alert("请选择日志分类源") + document.forms[0].source.focus() + return false + } + if (document.forms[0].target.value=="null") { + alert("请选择需要移动到的目标日志分类") + document.forms[0].target.focus() + return false diff --git a/Web/common/nicetitle.js b/Web/common/nicetitle.js new file mode 100644 index 0000000..7dffa8b --- /dev/null +++ b/Web/common/nicetitle.js @@ -0,0 +1,15 @@ +addEvent(window, "load", makeNiceTitles); + +var XHTMLNS = "http://www.w3.org/1999/xhtml"; +var CURRENT_NICE_TITLE; +var browser = new Browser(); + +function makeNiceTitles() { + if (!document.createElement || !document.getElementsByTagName) return; + // add namespace methods to HTML DOM; this makes the script work in both + // HTML and XML contexts. + if(!document.createElementNS) + { + document.createElementNS = function(ns,elt) { + return document.createElement(elt); + } diff --git a/Web/control.aspx b/Web/control.aspx new file mode 100644 index 0000000..a11d7c3 --- /dev/null +++ b/Web/control.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="control.aspx.cs" Inherits="control" %> + + + + + + COCOWO.com后台管理 + + + + + + + + diff --git a/Web/control.aspx.cs b/Web/control.aspx.cs new file mode 100644 index 0000000..de0e8a1 --- /dev/null +++ b/Web/control.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; +using COCOWO.COMP; +using COCOWO.DB; + +public partial class control : System.Web.UI.Page +{ diff --git a/Web/feed.aspx b/Web/feed.aspx new file mode 100644 index 0000000..79cd39e --- /dev/null +++ b/Web/feed.aspx @@ -0,0 +1 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="feed.aspx.cs" Inherits="feed" %> diff --git a/Web/feed.aspx.cs b/Web/feed.aspx.cs new file mode 100644 index 0000000..1073577 --- /dev/null +++ b/Web/feed.aspx.cs @@ -0,0 +1,15 @@ +using System; +using System.Data; +using System.Configuration; +using System.Collections; +using System.Collections.Generic; +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; +using System.Text; +using COCOWO.COMP; +using COCOWO.DB; + diff --git a/Web/getTags.aspx b/Web/getTags.aspx new file mode 100644 index 0000000..dce81b1 --- /dev/null +++ b/Web/getTags.aspx @@ -0,0 +1,15 @@ +<%@ Page Language="C#" AutoEventWireup="true" CodeFile="getTags.aspx.cs" Inherits="getTags" %> + + + + + + + + 插入已经存在的Tag + + +