master
editor 12 months ago
commit 917a215f96

@ -0,0 +1,34 @@
柠檬居IT技术网多用户Blog源码
柠檬居IT技术网Blog源码
柠檬居IT技术网前ASP.NET版BLOG程序按照PJBLOG2结构模仿通俗点说就是PJBLOG2的.NET翻版完全兼容PJBLOG的皮肤功能
这个程序是三层架构理念开发,结构清晰、明了,方便修改和整理。
先说一下根目录的几个文件夹COMP 里面的主要是几个比较实用方法类可以调用。缩短开发周期。希望大家能多看看这里面的方法。DB   这个是对数据访问语句的集合类。对每个表对一个的CS文件进行操作。FCKeditor.Net_2.2   这个不用我说了吧HTML编辑器完全开源。GuestBook 这个要注意了是写插件用的。Web 主网站程序了。
用户名密码 admin    后台密码 admin
请注意后台管理全部都写在ConContent.aspx里了很多人问我这样是不是不好呀我也想过其实只是为了减少DLL的生成数。代码还是比较规范长是长了点看上去不会累的。第二点注意的就是服务器的问题了很多朋友用的是NTFS的可能会不好使是因为没有给写入权限解决方法登陆nmju.net上面有图片的讲解就是添加一个ASPNET权限就好了。
上传文件使用的NET自己的上传组件要FSO没的朋友就开开吧。不开也行用FTP我建议使用FTP安全很多。
先写到这里吧。少是少了点,以后在慢慢给大家讲。
下一个版本的开发目标是真正使用AJAX减少数据访问次数和不必要的数据往返。这样网站浏览速度会很快的。还有什么好提议请发邮件给我luckcf@gmail.com
 
作者: 数字水瓶
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/NingMengJu
------------------------------------------------------------------------------------------------
源码服务专家
官网: 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

@ -0,0 +1,15 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{1CEA5581-6A16-4256-890A-24366482D87F}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NMJU_NET.COMP</RootNamespace>
<AssemblyName>NMJU_NET.COMP</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>

@ -0,0 +1,15 @@
using System;
using System.IO;
using System.Configuration;
namespace NMJU_NET.COMP
{
/// <summary>
/// 部分FTP类代码来自网络.版式权归原作者所有
/// </summary>
/// Download from www.nmju.net()
public class FTP
{
public FTP()
{

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace NMJU_NET.COMP
{
public class FilesIO
{
//复制文件夹
public static void CopyFiles(string varFromDirectory, string varToDirectory)
{
Directory.CreateDirectory(varToDirectory);
if (!Directory.Exists(varFromDirectory)) return;

@ -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 NMJU_NET.COMP
{
/// <summary>
/// ImageLogin 的摘要说明。
/// </summary>
public class ImageLogincs
{

@ -0,0 +1,15 @@
using System;
using System.Web;
using System.Web.UI;
namespace NMJU_NET.COMP
{
/// <summary>
/// 一些常用的Js调用
/// 创建时间2006-8-3
/// 创建者:马先光
/// </summary>
/// Download from www.nmju.net()
public class Jscript
{

@ -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 NMJU_NET.COMP
{
/// <summary>
/// 对控件的处理类
/// 创建时间2006-8-3
/// 创建者:马先光
/// </summary>
public class MyControl

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过下列属性集
// 控制。更改这些属性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("COMP")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("NMJU_NET")]
[assembly: AssemblyProduct("COMP")]
[assembly: AssemblyCopyright("版权所有 (C) NMJU_NET 2006")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
using System;
using System.Web;
namespace NMJU_NET.COMP
{
/// <summary>
/// ˵<><CBB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȡ<EFBFBD><C8A1>ѯ<EFBFBD>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
/// <20><>д<EFBFBD>ߣ<EFBFBD><DFA3><EFBFBD><EFBFBD>ȹ<EFBFBD>
/// Date<74><65>2006-4
/// </summary>
public class QueryString
{
public QueryString()
{
//

@ -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 NMJU_NET.COMP
{
/// <summary>

@ -0,0 +1,15 @@
using System;
using System.Web;
namespace NMJU_NET.COMP
{
public class UsersInfo
{
/// <summary>
/// 返回用户ID
/// </summary>
static public string GetUserId
{
#region
get
{

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Collections.Generic;
using System.Text;
using System.Xml;
using System.IO;
namespace NMJU_NET.COMP
{
public class XmlControl
{
protected string strXmlFile;
protected XmlDocument objXmlDoc = new XmlDocument();
public XmlControl(string XmlFile)

@ -0,0 +1,5 @@
bin\Debug\NMJU_NET.COMP.dll
bin\Debug\NMJU_NET.COMP.pdb
obj\Debug\ResolveAssemblyReference.cache
obj\Debug\NMJU_NET.COMP.dll
obj\Debug\NMJU_NET.COMP.pdb

@ -0,0 +1,5 @@
E:\downCode\NMJU_NET\COMP\bin\Debug\NMJU_NET.COMP.dll
E:\downCode\NMJU_NET\COMP\bin\Debug\NMJU_NET.COMP.pdb
E:\downCode\NMJU_NET\COMP\obj\Debug\ResolveAssemblyReference.cache
E:\downCode\NMJU_NET\COMP\obj\Debug\NMJU_NET.COMP.dll
E:\downCode\NMJU_NET\COMP\obj\Debug\NMJU_NET.COMP.pdb

@ -0,0 +1,15 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{88550AA5-4D06-4205-93DC-A8DCC0822EE0}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NMJU_NET.DB</RootNamespace>
<AssemblyName>NMJU_NET.DB</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的常规信息通过下列属性集
// 控制。更改这些属性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("DB")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("NMJU_NET")]
[assembly: AssemblyProduct("DB")]
[assembly: AssemblyCopyright("版权所有 (C) NMJU_NET 2006")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
/*<EFBFBD><EFBFBD>.NET<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ACCESS<EFBFBD><EFBFBD><EFBFBD>ݿ<EFBFBD>(<EFBFBD><EFBFBD><EFBFBD><EFBFBD>,ѹ<EFBFBD><EFBFBD>,<EFBFBD><EFBFBD><EFBFBD><EFBFBD>,<EFBFBD>ָ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>)
дһ<EFBFBD><EFBFBD>С<EFBFBD>ͳ<EFBFBD><EFBFBD><EFBFBD>,<EFBFBD><EFBFBD>ͷû<EFBFBD><EFBFBD>Microsoft Access,<EFBFBD><EFBFBD>ν<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݿ<EFBFBD>,һ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ȼ<EFBFBD><EFBFBD>.
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>C:\Program Files\Common Files\System\ado\msadox.dll,<EFBFBD><EFBFBD>DLL<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ADOX<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ռ<EFBFBD>;
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>C:\Program Files\Common Files\System\ado\msjro.dll,<EFBFBD><EFBFBD>DLL<EFBFBD><EFBFBD><EFBFBD><EFBFBD>JRO<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ռ<EFBFBD>
ע<EFBFBD><EFBFBD>:<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>dll<EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֶ<EFBFBD><EFBFBD><EFBFBD>com<EFBFBD><EFBFBD><EFBFBD> <EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ .net<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>vs.net<EFBFBD><EFBFBD><EFBFBD>ߵ<EFBFBD><EFBFBD><EFBFBD>
*/
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; //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ռ<EFBFBD><D5BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ACCESS<53><53><EFBFBD><EFBFBD>(<28><><EFBFBD><EFBFBD>)--<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ==> <20><><EFBFBD><EFBFBD> ==> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ==> <20><><EFBFBD><EFBFBD><EFBFBD>ҵ<EFBFBD>.dll

@ -0,0 +1,15 @@
using System;
using System.Web;
using System.Data;
using System.Data.OleDb;
using System.Configuration;
namespace NMJU_NET.DB
{
/// <summary>
/// 数据库操作基类
/// 实现对Sql数据库的各种操作
/// 创建时间2006-8-3
/// </summary>
public class SqlDataBase

@ -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 NMJU_NET.COMP;
namespace NMJU_NET.DB
{
public class Users :SqlDataBase
{
string strSql = null;
/// <summary>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Text;
namespace NMJU_NET.DB
{
public class blog_Category : SqlDataBase
{
/// <summary>
/// <20><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD>
/// /// Download from www.nmju.net(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>)
/// </summary>
public DataView Category_List()

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Data.SqlClient;
using System.Web;
using System.Collections.Generic;
using System.Text;
using NMJU_NET.COMP;
namespace NMJU_NET.DB
{
public class blog_Comment : SqlDataBase
{
/// <summary>
/// <20><><EFBFBD><EFBFBD>ȫ<EFBFBD><C8AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Text;
using System.Web;
namespace NMJU_NET.DB
{
public class blog_Content :SqlDataBase
{
blog_tag Blog_tag = new blog_tag();
blog_Smilies Blog_Smilies = new blog_Smilies();

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Text;
namespace NMJU_NET.DB
{
public class blog_Keywords : SqlDataBase
{
/// <summary>
/// <20><>ȡȫ<C8A1><C8AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
/// </summary>
/// <param name=""></param>
/// <returns></returns>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Text;
namespace NMJU_NET.DB
{
public class blog_Links : SqlDataBase
{
/// <summary>
/// <20><>ȡLinks<6B>б<EFBFBD>
/// </summary>
public DataView Links_List()
{

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Text;
namespace NMJU_NET.DB
{
public class blog_Smilies : SqlDataBase
{
/// <summary>
/// <20><>ȡȫ<C8A1><C8AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
/// </summary>
/// <param name=""></param>
/// <returns></returns>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Text;
namespace NMJU_NET.DB
{
public class blog_Trackback : SqlDataBase
{
/// <summary>
/// <20><>ȡTrackback<63>б<EFBFBD>
/// </summary>
public DataView Trackback_List()
{

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Text;
using System.Web;
using NMJU_NET.COMP;
namespace NMJU_NET.DB
{
public class blog_module : SqlDataBase
{
/// <summary>
/// ģ<><C4A3><EFBFBD><EFBFBD><EFBFBD>
/// </summary>
/// <param name=""></param>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Text;
namespace NMJU_NET.DB
{
public class blog_spam : SqlDataBase
{
/// <summary>
/// <20><>ȡspam<61>б<EFBFBD>
/// </summary>
public DataView Spam_List()
{
return GetDv("SELECT * FROM blog_spam order by spam_id desc");

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Text;
namespace NMJU_NET.DB
{
public class blog_status : SqlDataBase
{
/// <summary>
/// <20><>ȡstatus<75>б<EFBFBD>
/// </summary>
public DataView Status_List()
{

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Text;
namespace NMJU_NET.DB
{
public class blog_tag : SqlDataBase
{
/// <summary>
/// <20><>ȡtag<61>б<EFBFBD>
/// </summary>
public DataView Tag_List()
{
return GetDv("SELECT * FROM blog_tag order by tag_id desc");

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Web;
using System.Web.SessionState;
using NMJU_NET.COMP;
namespace NMJU_NET.DB
{
public class library
{
blog_module Blog_module = new blog_module();

@ -0,0 +1,14 @@
bin\Debug\NMJU_NET.DB.dll
bin\Debug\NMJU_NET.DB.pdb
bin\Debug\NMJU_NET.COMP.dll
bin\Debug\NMJU_NET.COMP.pdb
bin\Debug\Interop.ADODB.dll
bin\Debug\Interop.ADOX.dll
bin\Debug\Interop.JRO.dll
obj\Debug\ResolveAssemblyReference.cache
obj\Debug\Interop.ADODB.dll
obj\Debug\Interop.ADOX.dll
obj\Debug\Interop.JRO.dll
obj\Debug\DB.csproj.ResolveComReference.cache
obj\Debug\NMJU_NET.DB.dll
obj\Debug\NMJU_NET.DB.pdb

@ -0,0 +1,14 @@
E:\downCode\NMJU_NET\DB\bin\Debug\NMJU_NET.DB.dll
E:\downCode\NMJU_NET\DB\bin\Debug\NMJU_NET.DB.pdb
E:\downCode\NMJU_NET\DB\bin\Debug\NMJU_NET.COMP.dll
E:\downCode\NMJU_NET\DB\bin\Debug\NMJU_NET.COMP.pdb
E:\downCode\NMJU_NET\DB\bin\Debug\Interop.ADODB.dll
E:\downCode\NMJU_NET\DB\bin\Debug\Interop.ADOX.dll
E:\downCode\NMJU_NET\DB\bin\Debug\Interop.JRO.dll
E:\downCode\NMJU_NET\DB\obj\Debug\ResolveAssemblyReference.cache
E:\downCode\NMJU_NET\DB\obj\Debug\Interop.ADODB.dll
E:\downCode\NMJU_NET\DB\obj\Debug\Interop.ADOX.dll
E:\downCode\NMJU_NET\DB\obj\Debug\Interop.JRO.dll
E:\downCode\NMJU_NET\DB\obj\Debug\DB.csproj.ResolveComReference.cache
E:\downCode\NMJU_NET\DB\obj\Debug\NMJU_NET.DB.dll
E:\downCode\NMJU_NET\DB\obj\Debug\NMJU_NET.DB.pdb

@ -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.
//

@ -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.
*

@ -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.
*

@ -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.

@ -0,0 +1,15 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectType>Local</ProjectType>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{F6F32704-97E0-4006-A474-5A9729C6B1B4}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ApplicationIcon>
</ApplicationIcon>
<AssemblyKeyContainerName>
</AssemblyKeyContainerName>
<AssemblyName>COCOWO.FCKeditorV2</AssemblyName>
<AssemblyOriginatorKeyFile>
</AssemblyOriginatorKeyFile>

@ -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.

@ -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.
*

@ -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.
*

@ -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.
*

@ -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.
*

@ -0,0 +1,15 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!--
* 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?"
-->
<html>
<head>

@ -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

@ -0,0 +1,15 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!--
* 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?"
-->
<html>
<head>

@ -0,0 +1,5 @@
bin\Debug\NMJU_NET.FCKeditorV2.dll
bin\Debug\NMJU_NET.FCKeditorV2.pdb
obj\Debug\ResolveAssemblyReference.cache
obj\Debug\NMJU_NET.FCKeditorV2.dll
obj\Debug\NMJU_NET.FCKeditorV2.pdb

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Admin_Music.aspx.cs" Inherits="Admin_Music" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>无标题页</title>
<link rel="stylesheet" rev="stylesheet" href="common/control.css" type="text/css" media="all" />
<script type="text/javascript" src="common/control.js"></script>
</head>
<body class="ContentBody">
<form id="form1" runat="server">
<div class="MainDiv">
<div id="Comment" runat="server" visible="true">

@ -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.IO;
public partial class Admin_Music : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Admin_guestbook.aspx.cs" Inherits="Admin_guestbook" %>
<%@ Register Src="common/MultiPage.ascx" TagName="MultiPage" TagPrefix="uc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<link rel="stylesheet" rev="stylesheet" href="common/control.css" type="text/css" media="all" />
<script type="text/javascript" src="common/control.js"></script>
</head>
<body class="ContentBody">
<form id="form1" runat="server">
<div class="MainDiv">
<div id="Comment" runat="server" visible="false">

@ -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 NMJU_NET.COMP;
using NMJU_NET.DB;
//该源码下载自www.51aspx.com()
public partial class Admin_guestbook : System.Web.UI.Page

@ -0,0 +1,15 @@
<%@ Application Language="C#" %>
<%@ Import Namespace="NMJU_NET.DB" %>
<%@ Import Namespace="NMJU_NET.COMP" %>
<%@ Import Namespace="System.Data" %>
<script runat="server">
void Application_Start(object sender, EventArgs e)
{
// 在应用程序启动时运行的代码
Application["user_sessions"] = 0; //在线人数
blog_module Blog_module = new blog_module();
blog_status Blog_status = new blog_status();
DataView Blog_Info = Blog_module.blog_Info();
Application["SiteName"] = StringUtil.UnCheckStr(Blog_Info[0][0].ToString());//站点名字
Application["SiteURL"] = StringUtil.UnCheckStr(Blog_Info[0][1].ToString());//站点地址

@ -0,0 +1,15 @@
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title><%=Application["SiteName"]%></title>
<link rel="stylesheet" rev="stylesheet" href="skins/<%=Application["blog_DefaultSkin"]%>/global.css" type="text/css" media="all" /><!--全局样式表-->
<link rel="stylesheet" rev="stylesheet" href="skins/<%=Application["blog_DefaultSkin"]%>/layout.css" type="text/css" media="all" /><!--层次样式表-->
<link rel="stylesheet" rev="stylesheet" href="skins/<%=Application["blog_DefaultSkin"]%>/typography.css" type="text/css" media="all" /><!--局部样式表-->
<link rel="stylesheet" rev="stylesheet" href="skins/<%=Application["blog_DefaultSkin"]%>/link.css" type="text/css" media="all" /><!--超链接样式表-->
<link rel="stylesheet" rev="stylesheet" href="skins/<%=Application["blog_DefaultSkin"]%>/UBB/editor.css" type="text/css" media="all" /><!--UBB编辑器代码-->
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<script type="text/javascript" src="common/common.js"></script>

@ -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 NMJU_NET.DB;
using NMJU_NET.COMP;
public partial class MasterPage : System.Web.UI.MasterPage
{

@ -0,0 +1,15 @@
mkList("i think i.mp3","i think i","<22><>","T");
mkList("waiting for you.mp3","waiting for you","<22><>","T");
mkList("<22><><EFBFBD><EFBFBD>.mp3","<22><><EFBFBD><EFBFBD>","<22><>","T");
mkList("<22><><EFBFBD>ݸ<EFBFBD>Ŀ.mp3","<22><><EFBFBD>ݸ<EFBFBD>Ŀ","<22><>","T");
mkList("<22><><EFBFBD>ܲ<EFBFBD><DCB2><EFBFBD><EFBFBD><EFBFBD>.mp3","<22><><EFBFBD>ܲ<EFBFBD><DCB2><EFBFBD><EFBFBD><EFBFBD>","<22><>","T");
mkList("<22><><EFBFBD>ܲ<EFBFBD><DCB2><EFBFBD><EFBFBD><EFBFBD>.mp3","<22><><EFBFBD>ܲ<EFBFBD><DCB2><EFBFBD><EFBFBD><EFBFBD>","<22><>","T");

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CheckCode.aspx.cs" Inherits="common_CheckCode" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>

@ -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)

@ -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;
}

@ -0,0 +1,15 @@
/***********************************************
* Flash ActionScript Syntax Definition
***********************************************/
FCSyntaxDef ["AS"] = {
name : "ActionScript",
delimiters : "~!%^&*()-+=|\\/{}[]:;\"'<>,.?",
comments : "//",
cmtcolor : "#008080",
blocks : {
String : {
name : "<22>ַ<EFBFBD><D6B7><EFBFBD>",
color : "#ff00ff",
begin : "\"",
end : "\"",
escape : "\\"

@ -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;
}

@ -0,0 +1,15 @@
/*************************************
* C/C++ Syntax Definition
*************************************/
FCSyntaxDef ["CPP"] = {
name : "C/C++",
delimiters : "~!%^&*()-+=|\\/{}[]:;\"'<>,.?",
comments : "//",
cmtcolor : "#008080",
blocks : {
String : {
name : "<22>ַ<EFBFBD><D6B7><EFBFBD>",
color : "#ff00ff",
begin : "\"",
end : "\"",
escape : "\\"

@ -0,0 +1,15 @@
/***********************************************
* ColdFustion Syntax Definition
***********************************************/
FCSyntaxDef ["CFM"] = {
name : "UBB ActionScript",
nocase : false,
delimiters : "~!@%^&*()-+=|\\/{}[]:;\"'<>,.?",
comments : "//",
cmtcolor : "#008080",
cmtstyle : "i",
blocks : {
String : {
name : "<22>ַ<EFBFBD><D6B7><EFBFBD>",
color : "#ff00ff",
begin : "\"",

@ -0,0 +1,15 @@
/*************************************
* Document Syntax Definition
*************************************/
FCSyntaxDef ["DOC"] = {
name : "Document",
delimiters : "~!%^&*()-+=|\\/{}[]:;\"'<>,.?<3F>򣭡<EFBFBD><F2A3ADA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",
comments : "----- *****",
cmtcolor : "#008080",
blocks : {
Title : {
name : "<22><><EFBFBD><EFBFBD>",
color : "#A80000",
style : "bu",
begin : "<22><>",
end : "<22><>"

@ -0,0 +1,15 @@
/***********************************************
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD>JS<EFBFBD><EFBFBD> - FancyCoder for JavaScript
* version 1.0 beta
***********************************************/
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFB7A8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E5A3AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӧ<EFBFBD><D3A6><EFBFBD><EFBFBD>
//lang: <20><>Ϊ0<CEAA><30><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ID<49><44><EFBFBD>ֱ<EFBFBD><D6B1>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ԣ<EFBFBD><D4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>д<EFBFBD><D0B4><EFBFBD>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
function FCCheckSyntaxDef(/*lang, ...*/) {
//<2F><EFBFBD><E8B6A8><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD>
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 {

@ -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;
}

@ -0,0 +1,15 @@
/*************************************
* XML Syntax Definition
*************************************/
FCSyntaxDef ["XML"] = {
name : "XML",
delimiters : "<?/>!=\"",
blocks : {
BlockComment : {
name : "<22><>ע<EFBFBD><D7A2>",
color : "#008080",
begin : "<!--",
end : "-->",
lines : true
},
BlockText : {

@ -0,0 +1,15 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title><EFBFBD><EFBFBD><EFBFBD><EFBFBD>JS<EFBFBD><EFBFBD></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="test.css" rel="stylesheet" type="text/css">
<script language="JavaScript" src="FancyCoder.js"></script>
<script language="JavaScript" src="ActionScript.js"></script>
<script language="JavaScript" src="C_Cpp.js"></script>
<script language="JavaScript" src="XML.js"></script>
<script language="JavaScript" src="Doc.js"></script>
<script language="JavaScript">
function doHtmlcopy() {
textRange = HtmlCode.createTextRange();
textRange.execCommand("Copy");

@ -0,0 +1,15 @@
td {
font-family: "<22><><EFBFBD><EFBFBD>", "Arial", "tahoma";
font-size: 12px;
font-weight: bold;
color: #334488;
}
textarea {
font-family: Courier New, Courier, mono;
font-size: 12px;
border: 1px solid;
padding: 4px;
}
input {
font-family: "<22><><EFBFBD><EFBFBD>", "Arial", "tahoma";
font-size: 12px;

@ -0,0 +1,15 @@
<html>
<head>
<title>Htmlת<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></title>
<SCRIPT language="JavaScript1.2">
function HtmlToUBB(str) {
str = str.replace(/\r/g,"");
str = str.replace(/on(load|click|dbclick|mouseover|mousedown|mouseup)="[^"]+"/ig,"");
str = str.replace(/<script[^>]*?>([\w\W]*?)<\/script>/ig,"");
str = str.replace(/<a[^>]+href="([^"]+)"[^>]*>(.*?)<\/a>/ig,"\n[url=$1]$2[/url]\n");
str = str.replace(/<font[^>]+color=([^ >]+)[^>]*>(.*?)<\/font>/ig,"\n[color=$1]$2[/color]\n");
str = str.replace(/<img[^>]+src="([^"]+)"[^>]*>/ig,"\n[img]$1[/img]\n");
str = str.replace(/<([\/]?)b>/ig,"[$1b]");
str = str.replace(/<([\/]?)strong>/ig,"[$1b]");
str = str.replace(/<([\/]?)u>/ig,"[$1u]");
str = str.replace(/<([\/]?)i>/ig,"[$1i]");

@ -0,0 +1,6 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="MultiPage.ascx.cs" Inherits="common_MultiPage" %>
<asp:hyperlink id="lnkFirst" runat="server" Visible="False">&lt;&lt;</asp:hyperlink>
<asp:hyperlink id="lnkPrev" runat="server" Visible="False">&lt;</asp:hyperlink>
<asp:Label ID="lnkLabel" runat="server" Text=" | " Visible="False"></asp:Label>
<asp:hyperlink id="lnkNext" runat="server" Visible="False">&gt;</asp:hyperlink>
<asp:hyperlink id="lnkEnd" runat="server" Visible="False">&gt;&gt;</asp:hyperlink>

@ -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 NMJU_NET.DB;
using NMJU_NET.COMP;
public partial class common_MultiPage : System.Web.UI.UserControl
{

@ -0,0 +1,15 @@
//|===========================|
//| UBB编辑器JS代码 1.0 |
//| 作者:舜子(PuterJam) |
//| 版权所有 2005 |
//|===========================|
var UBBBrowerInfo=new Object();
var sAgent=navigator.userAgent.toLowerCase();
UBBBrowerInfo.IsIE=sAgent.indexOf("msie")!=-1;
UBBBrowerInfo.IsGecko=!UBBBrowerInfo.IsIE;UBBBrowerInfo.IsNetscape=sAgent.indexOf("netscape")!=-1;
if (UBBBrowerInfo.IsIE){
UBBBrowerInfo.MajorVer=navigator.appVersion.match(/MSIE (.)/)[1];
UBBBrowerInfo.MinorVer=navigator.appVersion.match(/MSIE .\.(.)/)[1];}
else{
UBBBrowerInfo.MajorVer=0;UBBBrowerInfo.MinorVer=0;

@ -0,0 +1,15 @@
//|===========================|
//| UBB编辑器JS代码 1.0 |
//| 作者:舜子(PuterJam) |
//| 版权所有 2006 |
//| For Mozilla |
//|===========================|
function showUBB(UBB_Content){
document.getElementById("editorbody").style.display="";
document.getElementById("editorHead").innerHTML=ubbTools;
var me=document.getElementById("editMask")
me.parentNode.removeChild(me);
UBBTextArea=document.getElementsByName(UBB_Content)
UBBTextArea[0].focus();
}

@ -0,0 +1,15 @@
//|===========================|
//| UBB编辑器JS代码 1.0 |
//| 作者:舜子(PuterJam) |
//| 版权所有 2006 |
//| For IE |
//|===========================|
var SelectAllow=false
var UBBrange
document.onselectstart=IESelectStart
function tellPoint()
{
//--获取坐标----
UBBrange = UBBTextArea[0].createTextRange()
var oSel = document.selection.createRange()

@ -0,0 +1,15 @@
//|===========================|
//| UBB编辑器JS代码 1.0 |
//| 作者:舜子(PuterJam) |
//| 版权所有 2005 |
//| UBB代码提示信息 |
//|===========================|
var email_normal = "请输入链接显示的文字,如果留空则直接显示邮件地址。\n使用标签:[email][/email] [email=][/email]";
var email_normal_input = "请输入邮件地址。";
var fontsize_normal = "请输入要设置为指定字号的文字。\n使用标签:[size][/size]";
var font_normal = "请输入要设置成指定字体的文字。\n使用标签:[font][/font]";
var bold_normal = "请输入要设置成粗体的文字。\n使用标签:[b][/b]";
var italic_normal = "请输入要设置成斜体的文字。\n使用标签:[i][/i]";
var quote_normal = "请输入要作为引用显示的文字。\n使用标签:[quote][/quote]";
var hidden_normal = "请输入要作为隐藏引用显示的文字。会员允许查看该引用信息\n使用标签:[hidden][/hidden]";

@ -0,0 +1,2 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="UBBconfigl.ascx.cs" Inherits="common_UBBconfigl" %>
<%=UBB_Content %>

@ -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 NMJU_NET.DB;
using NMJU_NET.COMP;
public partial class common_UBBconfigl : System.Web.UI.UserControl
{

@ -0,0 +1,15 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="UPFiles.ascx.cs" Inherits="common_UPFiles" %>
<script language="JavaScript">
function addFile()
{
var str = '<INPUT type="file" size="50" NAME="File"><br />'
document.getElementById('MyFile').insertAdjacentHTML("beforeEnd",str)
}
</script>
<table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<P id="MyFile"><INPUT type="file" size="50" NAME="File"><br /></P>
<P>
<input type="button" value="增加(Add)" onclick="addFile()">
<input onclick="this.form.reset()" type="button" value="重置(ReSet)">

@ -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
{
/// <summary>
/// UpLoad 的摘要说明。

@ -0,0 +1,15 @@
//PBlog2 公用JS代码
//Author:PuterJam
//查找网页内宽度太大的图片进行缩放以及PNG纠正
function ReImgSize(){
for (i=0;i<document.images.length;i++)
{
if (document.all){
if (document.images[i].width>500)
{
document.images[i].width="500"
document.images[i].outerHTML='<a href="'+document.images[i].src+'" target="_blank" title="在新窗口打开图片">'+document.images[i].outerHTML+'</a>'
}
}
else{

@ -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{

@ -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

@ -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);
}

@ -0,0 +1,15 @@
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" EnableEventValidation="false" CodeFile="guestbook.aspx.cs" Inherits="guestbook" Title="Untitled Page" %>
<%@ Register Src="common/MultiPage.ascx" TagName="MultiPage" TagPrefix="uc2" %>
<%@ Register Src="common/UBBconfigl.ascx" TagName="UBBconfigl" TagPrefix="uc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<style>
.CFace:link,.CFace:visited{padding:1px;padding-left:0px;padding-right:0px;border:1px solid #164283;background:#c9dbf5;border-bottom-width:3px;}
.CFace:hover{padding:1px;padding-left:0px;padding-right:0px;border:1px solid #164283;background:#9bbbec;border-bottom-width:3px}
.LFace:link,.LFace:visited{padding:1px;}
.LFace:hover{padding-left:0px;padding-right:0px;border:1px solid #164283;background:#c9dbf5}
</style>
<div id="Content_ContentList" class="content-width"><a name="body" accesskey="B" href="#body"></a>
<!--分页-->
<div class="pageContent" id="PageDIV" runat="server">
<div class="page" style="float:left;font-size:10px;">
<ul>

@ -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 NMJU_NET.COMP;
using NMJU_NET.DB;
public partial class guestbook : System.Web.UI.Page
{

@ -0,0 +1,15 @@
#editorbody{
background-color: #EFEFDE;
border-width:1px;
border-style:solid;
border-color:#ffffff #9B8424 #9B8424 #ffffff;
}
#editorHead{
padding:2px 6px 6px 6px;
}
.editorTools{
}
.Toolsbar{
background: url(bar.gif) no-repeat 2px 5px;

@ -0,0 +1,13 @@
body{
font-size:12px;
margin:0px;
padding:0px;
text-align:center;
background:#785C36;
color:#574D31;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
p{margin:3px;}
img {max-width: 100%;height: auto;}
select{font-family: Verdana, Arial}
th{background:#D5CBBE;border-bottom:1px solid #795B50}

@ -0,0 +1,15 @@
/*---主体样式---*/
#container{width:760px;margin:0 auto;padding:0;text-align:center;background:#F8F6E9 url('main.jpg');}
/*---顶部样式---*/
#container #header{height:109px;width:748px;margin:0 auto;background:#F8F6E9 url('topbar.png');}
#container #header #blogname{margin:0 auto;padding:10px 0px 15px 10px;font-size:20px;color:#FFFFFF;text-align:left;font-weight:bold;}
#container #header #blogname #blogTitle{font-size:13px;margin:3px 3px 3px 8px;height:16px}
#container #header #menu{height:28px;text-align:right;/*visibility:hidden;*/}
#container #header #menu #Left{width:0px;float:left;}
#container #header #menu #Right{width:0px;float:right;}
#container #header #menu ul{list-style:none;margin:0px 6px 0px 0px!important;margin:0px 3px 0px 0px;padding:0px;height:28px;float:right;}
#container #header #menu ul li{float:left;height:28px;}
.menuL{width:5px;background:#E3CE96 url(menu_left.png) no-repeat;padding:0px;}
.menuR{width:8px;background:#E3CE96 url(menu_right.png) no-repeat;padding:0px;}
.menuDiv{width:4px;background:#E3CE96 url(menu_div.png) no-repeat;padding:0px;}/*---菜单分割线---*/

@ -0,0 +1,15 @@
/*--------------------------
: :link :visited :hover访
a
.menuABlog
.titleA
.sideA
.CategoryA
.more
------------------------------------*/
a:link,a:visited{text-decoration:underline;color:#574D31;}
a:hover{color:#996600;}
.menuA:link,.menuA:visited{float:left;height:28px;text-align:center;padding:0px 4px 0px 4px;background:#E3CE96 url(menu_main.jpg) 0px 0px;text-decoration:none;color:#493107;line-height:210%;}
.menuA:hover{background:#E3CE96 url(menu_main.jpg) 0px -28px;color:#493107}
.titleA:link,.titleA:visited{text-decoration:none;font-weight:bold;font-family:verdana,;text-align:left;color:#FFFFFF;}
.titleA:hover{color:#FFFFCC;text-decoration:underline;}

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<SkinSet>
<SkinName>默认皮肤 - 短导航条风格</SkinName>
<SkinDesigner>PuterJam</SkinDesigner>
<pubDate>2004-11-6</pubDate>
<DesignerURL>http://puterjam.vipx.net</DesignerURL>
<DesignerMail>puterjam@etang.com</DesignerMail>
</SkinSet>

@ -0,0 +1,15 @@
/*---其他样式---*/
.userpass{border:1px solid;border-color:#9E9234 #fff #fff #9E9234;font-size:12px;font-family: Verdana, Arial, Helvetica, sans-serif;}
.userpass:hover,.userpass:focus{border-color:#9E9234;background:#FFFFEE}
.inputBox{border:1px solid;border-color:#9E9234 #fff #fff #9E9234;font-size:12px;font-family: Verdana, Arial, Helvetica, sans-serif;}
.inputBox:hover,.inputBox:focus{border-color:#9E9234;background:#FFFFEE}
.userbutton{border:1px solid;border-color:#fff #9E9234 #9E9234 #fff;height:22px;padding:0px 5px 2px 5px !important;padding:3px 2px 0px 2px;background:#E3CE96 url(menu_main.jpg) 0px -30px;}
.LinkTable{margin:5px 10px 5px 0px;}
.commentTable{}
.high1{font-weight:bold;color:#f00;background:#ff0}
/*日历样式*/
#Calendar_Body{margin:5px 10px 5px 5px;font-family:arial;line-height:120%}
/*日历样式-顶部*/
#Calendar_Body #Calendar_Top{padding:0px 2px 0px 2px;height:18px;text-align:center;font-weight:bold;}
/*日历样式-顶部按钮-左*/

@ -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.
*

@ -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.
*

@ -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.

@ -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.

@ -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.
*

@ -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.
*

@ -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.
*

@ -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.
*

@ -0,0 +1,15 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{676D9F2E-2947-4002-AE12-3F111AD5EA9C}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NMJU.UIControl</RootNamespace>
<AssemblyName>NMJU.UIControl</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save