master
editor 1 week ago
commit 8cf0652b73

@ -0,0 +1,45 @@
24XN.COM在线帮助系统源码
一、源码描述
环境VS2022 sql2019
二、功能介绍
国内第一款在线帮助系统——24xN.com邓西网站帮助系统
此系统类似于Windows平台下常用CHM格式的帮助文档使用三层架构开发基于visual studio 2005 + Sql 2000制作前台使用AJAX+HTML展现。
此系统的运行环境:.net framework 2.0IIS 5.0+IE5.5+。现已升级至VS2022+sql2019。
DB_51Aspx下为系统数据库,在sqlServer中直接还原即可    
系统初始帐号为admin
系统初始密码为51aspx
系统后台登录地址/admin/login.aspx
系统前台浏览地址/help.html
本系统可配合windows平台下的主流内容管理系统风讯、动易论坛动网Discuz!NT博客Oblog系统使用让您的网站帮助系统更加专业。
三、注意事项
1、在项目web.config修改数据库连接字符串附加数据库。
2、管理员账号与密码admin 51aspx 。
3、ctrl+F5运行即可。
作者: 邓西
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/HelpOnline
------------------------------------------------------------------------------------------------
源码服务专家
官网: 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>{9CC7B760-6EB0-4F72-997F-783FEA2B0100}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Help.BLL</RootNamespace>
<AssemblyName>Help.BLL</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.OleDb;
using Help.SQLServerDAL;
using Help.Model;

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

@ -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>{5696B856-E46E-4306-B839-57C8FC37E8BC}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Help.Common</RootNamespace>
<AssemblyName>Help.Common</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("Help.Common")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("番茄花园")]
[assembly: AssemblyProduct("Help.Common")]
[assembly: AssemblyCopyright("版权所有 (C) 番茄花园 2007")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

@ -0,0 +1,15 @@
using System;
using System.Text;
using System.Text.RegularExpressions;
using System.Web;
using System.Security.Cryptography;
//该源码下载自www.51aspx.com()
namespace Help.Common
{
public class Public
{
/// <summary>
/// 去除字符串最后一个','号
/// </summary>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Help.Common
{
public class Rand
{
/// <summary>
/// 生成随机数字
/// </summary>
/// <param name="length">生成长度</param>
/// <returns></returns>
public static string Number(int Length)
{

@ -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>{54307000-3F19-46BF-81EC-0EEC340AEB6D}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Help.Model</RootNamespace>
<AssemblyName>Help.Model</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Collections.Generic;
namespace Help.Model
{
[Serializable]
public class HelpInfo

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

@ -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>{B09C8B55-9ABD-420D-9A48-CA8A60610F73}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Help.SQLServerDAL</RootNamespace>
<AssemblyName>Help.SQLServerDAL</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using Help.Common;
using Help.Model;

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

@ -0,0 +1,15 @@
//===============================================================================
// This file is based on the Microsoft Data Access Application Block for .NET
// For more information please go to
// http://msdn.microsoft.com/library/en-us/dnbda/html/daab-rm.asp
//===============================================================================
//该源码下载自www.51aspx.com()
using System;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Collections;
using System.Text.RegularExpressions;
using Help.Common;

@ -0,0 +1 @@
{"RootPath":"C:\\Users\\coder\\Desktop\\2024Code\\6\\20240621\\update\\HelpOnline\\Help.BLL","ProjectFileName":"Help.BLL.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"Help.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Users\\coder\\Desktop\\2024Code\\6\\20240621\\update\\HelpOnline\\Help.Model\\bin\\Debug\\Help.Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Users\\coder\\Desktop\\2024Code\\6\\20240621\\update\\HelpOnline\\Help.SQLServerDAL\\bin\\Debug\\Help.SQLServerDAL.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"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.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\\6\\20240621\\update\\HelpOnline\\Help.BLL\\bin\\Debug\\Help.BLL.dll","OutputItemRelativePath":"Help.BLL.dll"},{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\6\\20240621\\update\\HelpOnline\\Help.BLL\\bin\\Debug\\Help.BLL.pdb","OutputItemRelativePath":"Help.BLL.pdb"}],"CopyToOutputEntries":[]}

@ -0,0 +1,15 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{9CC7B760-6EB0-4F72-997F-783FEA2B0100}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Help.BLL</RootNamespace>
<AssemblyName>Help.BLL</AssemblyName>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.OleDb;
using Help.SQLServerDAL;
using Help.Model;

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

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")]

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]

@ -0,0 +1,13 @@
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.BLL\bin\Debug\Help.BLL.dll
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.BLL\bin\Debug\Help.BLL.pdb
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.BLL\bin\Debug\Help.Model.dll
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.BLL\bin\Debug\Help.SQLServerDAL.dll
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.BLL\bin\Debug\Help.Common.dll
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.BLL\bin\Debug\Help.Model.pdb
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.BLL\bin\Debug\Help.SQLServerDAL.pdb
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.BLL\bin\Debug\Help.Common.pdb
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.BLL\obj\Debug\Help.BLL.csproj.AssemblyReference.cache
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.BLL\obj\Debug\Help.BLL.csproj.CoreCompileInputs.cache
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.BLL\obj\Debug\Help.BLL.csproj.Up2Date
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.BLL\obj\Debug\Help.BLL.dll
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.BLL\obj\Debug\Help.BLL.pdb

@ -0,0 +1,11 @@
obj\Debug\ResolveAssemblyReference.cache
bin\Debug\Help.BLL.dll
bin\Debug\Help.BLL.pdb
obj\Debug\Help.BLL.dll
obj\Debug\Help.BLL.pdb
bin\Debug\Help.Common.dll
bin\Debug\Help.Common.pdb
bin\Debug\Help.SQLServerDAL.dll
bin\Debug\Help.SQLServerDAL.pdb
bin\Debug\Help.Model.dll
bin\Debug\Help.Model.pdb

@ -0,0 +1 @@
{"RootPath":"C:\\Users\\coder\\Desktop\\2024Code\\6\\20240621\\update\\HelpOnline\\Help.Common","ProjectFileName":"Help.Common.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"Public.cs"},{"SourceFile":"Rand.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.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\\6\\20240621\\update\\HelpOnline\\Help.Common\\bin\\Debug\\Help.Common.dll","OutputItemRelativePath":"Help.Common.dll"},{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\6\\20240621\\update\\HelpOnline\\Help.Common\\bin\\Debug\\Help.Common.pdb","OutputItemRelativePath":"Help.Common.pdb"}],"CopyToOutputEntries":[]}

@ -0,0 +1,15 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{5696B856-E46E-4306-B839-57C8FC37E8BC}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Help.Common</RootNamespace>
<AssemblyName>Help.Common</AssemblyName>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>

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

@ -0,0 +1,15 @@
using System;
using System.Text;
using System.Text.RegularExpressions;
using System.Web;
using System.Security.Cryptography;
//该源码下载自www.51aspx.com()
namespace Help.Common
{
public class Public
{
/// <summary>
/// 去除字符串最后一个','号
/// </summary>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Help.Common
{
public class Rand
{
/// <summary>
/// 生成随机数字
/// </summary>
/// <param name="length">生成长度</param>
/// <returns></returns>
public static string Number(int Length)
{

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")]

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]

@ -0,0 +1,6 @@
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.Common\bin\Debug\Help.Common.dll
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.Common\bin\Debug\Help.Common.pdb
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.Common\obj\Debug\Help.Common.csproj.AssemblyReference.cache
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.Common\obj\Debug\Help.Common.csproj.CoreCompileInputs.cache
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.Common\obj\Debug\Help.Common.dll
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.Common\obj\Debug\Help.Common.pdb

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

@ -0,0 +1 @@
{"RootPath":"C:\\Users\\coder\\Desktop\\2024Code\\6\\20240621\\update\\HelpOnline\\Help.Model","ProjectFileName":"Help.Model.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"Help.cs"},{"SourceFile":"Properties\\AssemblyInfo.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.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\\6\\20240621\\update\\HelpOnline\\Help.Model\\bin\\Debug\\Help.Model.dll","OutputItemRelativePath":"Help.Model.dll"},{"OutputItemFullPath":"C:\\Users\\coder\\Desktop\\2024Code\\6\\20240621\\update\\HelpOnline\\Help.Model\\bin\\Debug\\Help.Model.pdb","OutputItemRelativePath":"Help.Model.pdb"}],"CopyToOutputEntries":[]}

@ -0,0 +1,15 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{54307000-3F19-46BF-81EC-0EEC340AEB6D}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Help.Model</RootNamespace>
<AssemblyName>Help.Model</AssemblyName>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Collections.Generic;
namespace Help.Model
{
[Serializable]
public class HelpInfo

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

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")]

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]

@ -0,0 +1,6 @@
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.Model\bin\Debug\Help.Model.dll
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.Model\bin\Debug\Help.Model.pdb
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.Model\obj\Debug\Help.Model.csproj.AssemblyReference.cache
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.Model\obj\Debug\Help.Model.csproj.CoreCompileInputs.cache
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.Model\obj\Debug\Help.Model.dll
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.Model\obj\Debug\Help.Model.pdb

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

@ -0,0 +1,45 @@
24XN.COM在线帮助系统源码
一、源码描述
环境VS2022 sql2019
二、功能介绍
国内第一款在线帮助系统——24xN.com邓西网站帮助系统
此系统类似于Windows平台下常用CHM格式的帮助文档使用三层架构开发基于visual studio 2005 + Sql 2000制作前台使用AJAX+HTML展现。
此系统的运行环境:.net framework 2.0IIS 5.0+IE5.5+。现已升级至VS2022+sql2019。
DB_51Aspx下为系统数据库,在sqlServer中直接还原即可&nbsp; &nbsp;&nbsp;
系统初始帐号为admin
系统初始密码为51aspx
系统后台登录地址/admin/login.aspx
系统前台浏览地址/help.html
本系统可配合windows平台下的主流内容管理系统风讯、动易论坛动网Discuz!NT博客Oblog系统使用让您的网站帮助系统更加专业。
三、注意事项
1、在项目web.config修改数据库连接字符串附加数据库。
2、管理员账号与密码admin 51aspx 。
3、ctrl+F5运行即可。
作者: 邓西
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/HelpOnline
------------------------------------------------------------------------------------------------
源码服务专家
官网: 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" ToolsVersion="12.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{B09C8B55-9ABD-420D-9A48-CA8A60610F73}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Help.SQLServerDAL</RootNamespace>
<AssemblyName>Help.SQLServerDAL</AssemblyName>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
</UpgradeBackupLocation>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using Help.Common;
using Help.Model;

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

@ -0,0 +1,15 @@
//===============================================================================
// This file is based on the Microsoft Data Access Application Block for .NET
// For more information please go to
// http://msdn.microsoft.com/library/en-us/dnbda/html/daab-rm.asp
//===============================================================================
//该源码下载自www.51aspx.com()
using System;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Collections;
using System.Text.RegularExpressions;
using Help.Common;

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0", FrameworkDisplayName = ".NET Framework 4")]

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]

@ -0,0 +1,11 @@
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.SQLServerDAL\bin\Debug\Help.SQLServerDAL.dll
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.SQLServerDAL\bin\Debug\Help.SQLServerDAL.pdb
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.SQLServerDAL\bin\Debug\Help.Common.dll
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.SQLServerDAL\bin\Debug\Help.Model.dll
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.SQLServerDAL\bin\Debug\Help.Common.pdb
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.SQLServerDAL\bin\Debug\Help.Model.pdb
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.SQLServerDAL\obj\Debug\Help.SQLServerDAL.csproj.AssemblyReference.cache
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.SQLServerDAL\obj\Debug\Help.SQLServerDAL.csproj.CoreCompileInputs.cache
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.SQLServerDAL\obj\Debug\Help.SQL.71A73727.Up2Date
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.SQLServerDAL\obj\Debug\Help.SQLServerDAL.dll
C:\Users\coder\Desktop\2024Code\6\20240621\update\HelpOnline\Help.SQLServerDAL\obj\Debug\Help.SQLServerDAL.pdb

@ -0,0 +1,9 @@
obj\Debug\ResolveAssemblyReference.cache
bin\Debug\Help.SQLServerDAL.dll
bin\Debug\Help.SQLServerDAL.pdb
bin\Debug\Help.Common.dll
bin\Debug\Help.Common.pdb
obj\Debug\Help.SQLServerDAL.dll
obj\Debug\Help.SQLServerDAL.pdb
bin\Debug\Help.Model.dll
bin\Debug\Help.Model.pdb

@ -0,0 +1,45 @@
24XN.COM在线帮助系统源码
一、源码描述
环境VS2022 sql2019
二、功能介绍
国内第一款在线帮助系统——24xN.com邓西网站帮助系统
此系统类似于Windows平台下常用CHM格式的帮助文档使用三层架构开发基于visual studio 2005 + Sql 2000制作前台使用AJAX+HTML展现。
此系统的运行环境:.net framework 2.0IIS 5.0+IE5.5+。现已升级至VS2022+sql2019。
DB_51Aspx下为系统数据库,在sqlServer中直接还原即可&nbsp; &nbsp;&nbsp;
系统初始帐号为admin
系统初始密码为51aspx
系统后台登录地址/admin/login.aspx
系统前台浏览地址/help.html
本系统可配合windows平台下的主流内容管理系统风讯、动易论坛动网Discuz!NT博客Oblog系统使用让您的网站帮助系统更加专业。
三、注意事项
1、在项目web.config修改数据库连接字符串附加数据库。
2、管理员账号与密码admin 51aspx 。
3、ctrl+F5运行即可。
作者: 邓西
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/HelpOnline
------------------------------------------------------------------------------------------------
源码服务专家
官网: 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 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Admin.aspx.cs" Inherits="Admin_Admin" %>
<!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 href="../Css/Css.css"rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
<tr class="hback">
<td class="xingmu">管理员管理</td>
</tr>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AdminAdd.aspx.cs" Inherits="Admin_AdminAdd" %>
<!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 href="../Css/Css.css"rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
<tr class="hback">
<td class="xingmu">添加管理员</td>
</tr>
<tr class="hback">
<td align="left" class="hback"><a href="javascript:history.back();">返回上一级</a></td>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AdminEdit.aspx.cs" Inherits="AdminEdit" %>
<!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 href="../Css/Css.css"rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
<tr class="hback">
<td class="xingmu">修改管理员</td>
</tr>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" Debug="true" CodeFile="Default.aspx.cs" Inherits="Help_Web_Admin_Default" ResponseEncoding="GB2312" %>
<!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>
<title><3E><><EFBFBD><EFBFBD>ϵͳ</title>
<link href="../Css/Css.css"rel="stylesheet" type="text/css" />
</head>
<body>
<form id="FormList" name="FormList" action="" method="post" runat="server">
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
<tr class="hback">
<td class="xingmu"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></td>
</tr>
<tr class="hback">
<td class="hback"><a href="HelpAdd.aspx"><3E><><EFBFBD>Ӱ<EFBFBD><D3B0><EFBFBD></a></td>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="HelpAdd.aspx.cs" Inherits="Admin_HelpAdd" validateRequest=false %>
<%@ Register TagPrefix="editor" Assembly="WYSIWYGEditor" namespace="InnovaStudio" %>
<!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 href="../Css/Css.css"rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
<tr class="hback">
<td class="xingmu">添加信息</td>
</tr>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="HelpEdit.aspx.cs" Inherits="Admin_HelpEdit" validateRequest=false %>
<%@ Register TagPrefix="editor" Assembly="WYSIWYGEditor" namespace="InnovaStudio" %>
<!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 href="../Css/Css.css"rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
<tr class="hback">
<td class="xingmu">修改信息</td>
</tr>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Image.aspx.cs" Inherits="comm_Image" %>
<!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>
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Index.aspx.cs" Inherits="Admin_Index" %>
<!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 href="../Css/Css.css"rel="stylesheet" type="text/css" />
</head>
<FRAMESET id="MainFrame" cols="170,*" frameborder="NO" border="0" framespacing="0" scrolling="yes" noresize>
<FRAME id="MenuFrame" src="Menu.aspx" name="MenuFrame" scrolling="yes" frameborder="0">
<FRAME id="ContentFrame" src="SysParm.aspx" name="ContentFrame" scrolling="yes" frameborder="0" marginheight="0" marginwidth="0" >
</FRAMESET><noframes></noframes>
<body leftmargin="2" topmargin="0" marginwidth="0" marginheight="0">
</body>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="KeyWord.aspx.cs" Inherits="Admin_KeyWord"%>
<!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>
<title>关键字管理</title>
<link href="../Css/Css.css"rel="stylesheet" type="text/css" />
<script language="javascript" type="text/javascript" src="../JS/public.js"></script>
</head>
<body>
<form id="Formkey" name="Formkey" runat="server" action="">
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
<tr class="hback">
<td class="xingmu">关键字管理</td>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="KeyWordAdd.aspx.cs" Inherits="Admin_KeyWordAdd" validateRequest=false%>
<%@ Register TagPrefix="editor" Assembly="WYSIWYGEditor" namespace="InnovaStudio" %>
<!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 href="../Css/Css.css"rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
<tr class="hback">
<td class="xingmu">添加关键字信息</td>
</tr>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="KeyWordEdit.aspx.cs" Inherits="Admin_KeyWordEdit" validateRequest=false %>
<%@ Register TagPrefix="editor" Assembly="WYSIWYGEditor" namespace="InnovaStudio" %>
<!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 href="../Css/Css.css"rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
<tr class="hback">
<td class="xingmu">修改关键字信息</td>
</tr>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Login.aspx.cs" Inherits="Admin_Login" %>
<!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 href="../Css/Css.css"rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<br />
<br />
<br />
<br />

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="LoginOut.aspx.cs" Inherits="Admin_LoginOut" %>
<!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 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Menu.aspx.cs" Inherits="Admin_Menu" %>
<!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 href="../Css/Css.css"rel="stylesheet" type="text/css" />
</head>
<body topmargin="2" class="Leftback" style="margin:0px;" scroll=yes>
<table width="98%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="2"></td>
</tr>
</table>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SysParm.aspx.cs" Inherits="Admin_SysParm" validateRequest=false %>
<!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 href="../Css/Css.css"rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
<tr class="hback">
<td class="xingmu">
参数设置</td>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Think.aspx.cs" Inherits="Admin_Think" %>
<!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 href="../Css/Css.css"rel="stylesheet" type="text/css" />
<script language="javascript" type="text/javascript" src="../JS/public.js"></script>
</head>
<body>
<form id="FromAdvice" runat="server">
<table width="98%" border="0" align="center" cellpadding="5" cellspacing="1" class="table">
<tr class="hback">
<td class="xingmu" colspan="2">建议管理</td>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Web;
/// <summary>
/// Verify 的摘要说明
/// </summary>

@ -0,0 +1,15 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Configuration;
using System.Web;
/// <summary>
/// WebLog 的摘要说明
/// </summary>

@ -0,0 +1,15 @@
a{text-decoration: none;} /* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>»<EFBFBD><C2BB><EFBFBD>,<2C><>Ϊunderline */
a:link {color: #333333;text-decoration: none;} /* δ<><CEB4><EFBFBD>ʵ<EFBFBD><CAB5><EFBFBD><EFBFBD><EFBFBD> */
a:visited {color: #333333;text-decoration: none;} /* <20>ѷ<EFBFBD><D1B7>ʵ<EFBFBD><CAB5><EFBFBD><EFBFBD><EFBFBD> */
a:hover{color: #FF3300;text-decoration: underline;} /* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
a:active {color: #FF3300;text-decoration: none;} /* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
.nav_l2{text-decoration:none;font-size:14px;color:#000;height:0;filter:dropshadow(offX=1,offY=1,color=#FFFFFF);}
.nav_l2 a:link{text-decoration:none;font-size:14px;color:#000;height:0;filter:dropshadow(offX=1,offY=1,color=#FFFFFF);}
.nav_l2 a:visited{text-decoration:none;font-size:14px;color:#fff;height:0;filter:dropshadow(offX=1,offY=1,color=#FFFFFF);}
.nav_l2 a:active,.nav_l2 a:hover{text-decoration:underline;font-size:14px;color:#fff;height:0;filter:dropshadow(offX=1,offY=1,color=#FFFFFF);}
body{
FONT-FAMILY: "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
FONT-SIZE: 12px;
text-decoration: none;
line-height: 150%;
background:#EBEBEB;

@ -0,0 +1,15 @@
BODY {
FONT-SIZE: 11px; MARGIN: 0px; COLOR: #2d465f; FONT-FAMILY: Arial, Helvetica, sans-serif
}
.form {
BORDER-RIGHT: #7f9db9 1px solid; BORDER-TOP: #7f9db9 1px solid; FONT-SIZE: 11px; BACKGROUND: #eff0f0; BORDER-LEFT: #7f9db9 1px solid; BORDER-BOTTOM: #7f9db9 1px solid; FONT-FAMILY: Verdana
}
.table {
BORDER-RIGHT: #d3dee9 1px solid; BORDER-TOP: #d3dee9 1px solid; MARGIN-TOP: 5px; FONT-SIZE: 11px; BACKGROUND: #e2f1fc; MARGIN-BOTTOM: 5px; BORDER-LEFT: #d3dee9 1px solid; BORDER-BOTTOM: #d3dee9 1px solid
}
.Navitable {
BORDER-RIGHT: #e2f2f3 1px solid; BORDER-TOP: #e2f2f3 1px solid; MARGIN-TOP: 2px; FONT-SIZE: 11px; BACKGROUND: #f5fbfe; MARGIN-BOTTOM: 5px; BORDER-LEFT: #e2f2f3 1px solid; LINE-HEIGHT: 20px; BORDER-BOTTOM: #e2f2f3 1px solid
}
A:link {
FONT-SIZE: 11px; COLOR: #4a7099; TEXT-DECORATION: none
}

@ -0,0 +1,15 @@
BODY {
PADDING-RIGHT: 8px; PADDING-LEFT: 8px; FONT-SIZE: 70%; BACKGROUND: #ffffff; PADDING-BOTTOM: 8px; MARGIN: 0px; COLOR: #333333; LINE-HEIGHT: 130%; PADDING-TOP: 8px; FONT-STYLE: normal; FONT-FAMILY: Verdana,"Segoe UI Bold",sans-serif
}
SELECT {
FONT-SIZE: 100%; VERTICAL-ALIGN: middle; COLOR: #333333; FONT-FAMILY: Verdana,"Segoe UI Bold",sans-serif
}
TABLE {
FONT-SIZE: 100%; MARGIN: 0px; COLOR: #333333; FONT-FAMILY: Verdana,"Segoe UI Bold",sans-serif
}
TR {
FONT-SIZE: 100%; MARGIN: 0px; COLOR: #333333; FONT-FAMILY: Verdana,"Segoe UI Bold",sans-serif
}
TD {
FONT-SIZE: 100%; MARGIN: 0px; COLOR: #333333; FONT-FAMILY: Verdana,"Segoe UI Bold",sans-serif
}

@ -0,0 +1,15 @@
<!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>24xN.com在线帮助系统</title>
<link href="Css/help.css" rel="stylesheet" type="text/css" />
<script language="JavaScript" type="text/javascript" src="JS/Prototype.js"></script>
</head>
<body onload="javascript:Go();">
<form id="form1" runat="server">
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" class="table">
<tr class="hback">
<td class="hback" height="23" valign="middle">
<div align="center" id="Name"><img src="Image/loading.gif" />请稍侯...</div>
</td>

@ -0,0 +1,15 @@
<%@ Application Language="C#" %>
<script runat="server">
void Application_Start(object sender, EventArgs e)
{
// 在应用程序启动时运行的代码
}
void Application_End(object sender, EventArgs e)
{
// 在应用程序关闭时运行的代码
}

@ -0,0 +1,15 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ</title>
<link href="Css/Help.css" rel="stylesheet" type="text/css">
</head>
<FRAMESET id="MainFrame" cols="210,*" frameborder="NO" border="0" framespacing="0" scrolling="yes" noresize>
<FRAME id="LeftFrame" src="Left.html" name="LeftFrame" scrolling="yes" frameborder="0">
<FRAME id="RightFrame" src="Right.html" name="RightFrame" scrolling="yes" frameborder="0" marginheight="0" marginwidth="0" >
</FRAMESET>
<NOFRAMES>
<body leftmargin="2" topmargin="0" marginwidth="0" marginheight="0">
<p><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳҪ<EFBFBD><EFBFBD>IE5<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϰ汾<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʹ<EFBFBD>ñ<EFBFBD>ϵͳ<EFBFBD><EFBFBD></p>
</body>

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="HelpSearchAjax.aspx.cs" Inherits="HelpSearchAjax" %>
<!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 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Help_Ajax.aspx.cs" Inherits="Help_Ajax" %>
<!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 @@
//===========================================================
//== (c)2007 24xN Inc. ==
//== QQ:6458450,Email:qwsf01115@163.com ==
//== Site:http://www.24xn.com ==
//== 论坛:http://bbs.24xn.com ==
//== Code By Xi.Deng ==
//== 版权所有 ==
//===========================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;

@ -0,0 +1,15 @@
/* Prototype JavaScript framework, version 1.4.0
* (c) 2005 Sam Stephenson <sam@conio.net>
*
* Prototype is freely distributable under the terms of an MIT-style license.
* For details, see the Prototype web site: http://prototype.conio.net/
*
/*--------------------------------------------------------------------------*/
var Prototype = {
Version: '1.4.0',
ScriptFragment: '(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)',
emptyFunction: function() {},
K: function(x) {return x}
}

@ -0,0 +1,15 @@
function selectAll(f,mode)
{
if(mode==true)
{
for(i=0;i<f.length;i++)
{
if(f.elements[i].type=="checkbox")
{
f.elements[i].checked=true;
}
}
}
else
{
for(i=0;i<f.length;i++)

@ -0,0 +1,15 @@
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><EFBFBD>б<EFBFBD></title>
<link href="Css/wlmap.css" rel="stylesheet" type="text/css" />
<style type="text/css">
.LableSelectItem {
cursor: hand;
color: white;
text-decoration: none;
}
.LableItem {
cursor: hand;
}

@ -0,0 +1,15 @@
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><EFBFBD><EFBFBD><EFBFBD><EFBFBD></title>
<script language="JavaScript" type="text/javascript" src="JS/Prototype.js"></script>
<script language="JavaScript" type="text/javascript" src="JS/public.js"></script>
<link href="Css/wlmap.css" rel="stylesheet" type="text/css" />
</head>
<body onload="javascript:Go();">
<form id="Thinksubmit" name="Thinksubmit" action="" method="post">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" id="help2col">
<tr>
<td id="colright">

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<!--
注意: 除了手动编辑此文件以外,您还可以使用
Web 管理工具来配置应用程序的设置。可以使用 Visual Studio 中的
“网站”->“Asp.Net 配置”选项。
设置和注释的完整列表在
machine.config.comments 中,该文件通常位于
\Windows\Microsoft.Net\Framework\v2.x\Config 中
-->
<configuration>
<appSettings>
<add key="Help" value="server=.;uid=sa;pwd=51Aspx;database=dxHelp;"/>
</appSettings>
<!--
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.

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

Loading…
Cancel
Save