master
editor 1 year ago
commit 8827a0c870

@ -0,0 +1,26 @@
邓西网站帮助系统NET+SQL开源版v2.2
邓西网站帮助系统NET+SQL开源版v2.2
 此系统类似于Windows平台下常用CHM格式的帮助文档使用三层架构开发基于visual studio 2005 + Sql 2000制作前台使用AJAX+HTML展现。    此系统的运行环境:.net framework 2.0IIS 5.0+IE5.5+。    DB_51aspx下为数据库文件附加即可    系统初始帐号密码为51aspx      系统后台登录地址/admin/login.aspx    系统前台浏览地址/help.html
作者: 邓西
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/HelpOnlineV22
------------------------------------------------------------------------------------------------
源码服务专家
官网: 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 @@
//===========================================================
//== (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.IO;
namespace Help.BLL
{

@ -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.Web;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.OleDb;
using Help.SQLServerDAL;

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Data;
namespace Help.BLL
{
public class Pagination
{
public static DataTable GetPage(string PageName, int PageIndex, int PageSize, out int RecordCount, out int PageCount, params Model.STSearch.STSearchCondition[] SqlCondition)
{
SQLServerDAL.Pagination page = new SQLServerDAL.Pagination();
return page.GetPage(PageName, PageIndex, PageSize, out RecordCount, out PageCount, SqlCondition);
}
}
}

@ -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 @@
//===========================================================
//== (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.IO;
using Help.Common;
namespace Help.BLL
{

@ -0,0 +1,11 @@
obj\Debug\ResolveAssemblyReference.cache
bin\Debug\Help.BLL.dll
bin\Debug\Help.BLL.pdb
bin\Debug\Help.Common.dll
bin\Debug\Help.Model.dll
bin\Debug\Help.SQLServerDAL.dll
bin\Debug\Help.Common.pdb
bin\Debug\Help.Model.pdb
bin\Debug\Help.SQLServerDAL.pdb
obj\Debug\Help.BLL.dll
obj\Debug\Help.BLL.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>{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 @@
//===========================================================
//== (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.Text;
using System.Text.RegularExpressions;
using System.Web;
using System.Security.Cryptography;
using System.IO;

@ -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;
namespace Help.Common
{
public class Rand

@ -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,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 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Help.Model
{
public class STSearch
{
public struct STSearchCondition
{
public string name;
public object value;
}
}
}

@ -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,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;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using System.Text.RegularExpressions;
namespace Help.SQLServerDAL
{
public class Pagination
{
protected string[] Admin_Admin ={ "[ID]", "[ID],[Name],[AddTime]", "[Admin]", "Order By [ID] Desc" };
protected string[] Admin_KeyWord ={ "[ID]", "[ID],[KeyName]", "[Key]", "Order By [ID] Desc" };
protected string[] Admin_KeyWord_1 ={ "[ID]", "[ID],[KeyName]", "[Key] Where [KeyName] Like CONVERT(Nvarchar(20), @Key)", "Order By [ID] Desc" };

@ -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
//===============================================================================
using System;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Collections;
using System.Text.RegularExpressions;
using Help.Common;
//该源码下载自www.51aspx.com()

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

@ -0,0 +1,26 @@
邓西网站帮助系统NET+SQL开源版v2.2
邓西网站帮助系统NET+SQL开源版v2.2
&nbsp;此系统类似于Windows平台下常用CHM格式的帮助文档使用三层架构开发基于visual studio 2005 + Sql 2000制作前台使用AJAX+HTML展现。&nbsp;&nbsp;&nbsp; 此系统的运行环境:.net framework 2.0IIS 5.0+IE5.5+。&nbsp;&nbsp;&nbsp; DB_51aspx下为数据库文件附加即可&nbsp;&nbsp;&nbsp; 系统初始帐号密码为51aspx&nbsp; &nbsp;&nbsp;&nbsp; 系统后台登录地址/admin/login.aspx&nbsp;&nbsp;&nbsp; 系统前台浏览地址/help.html
作者: 邓西
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/HelpOnlineV22
------------------------------------------------------------------------------------------------
源码服务专家
官网: 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" %>
<%@ Import NameSpace="System.Data"%>
<%@ Register Src="../controls/PageNavigator.ascx" TagName="PageNavigator" 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 href="../Css/Css.css"rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<table border="0" cellspacing="0" cellpadding="4" width="98%" align="center">
<tr>
<td class="header">管理员管理</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="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 border="0" cellspacing="0" cellpadding="4" width="98%" align="center">
<tr>
<td class="header">添加管理员</td>
</tr>
<tr class="category">
<td><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 border="0" cellspacing="0" cellpadding="4" width="98%" align="center">
<tr>
<td class="header">修改管理员</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" %>
<%@ Import NameSpace="System.Data"%>
<%@ Register Src="../controls/PageNavigator.ascx" TagName="PageNavigator" 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>
<title><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><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 border="0" cellspacing="0" cellpadding="4" width="98%" align="center">
<tr>
<td class="header"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></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="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 border="0" cellspacing="0" cellpadding="4" width="98%" align="center">
<tr>
<td class="header">添加信息</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 border="0" cellspacing="0" cellpadding="4" width="98%" align="center">
<tr>
<td class="header">修改信息</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 rows="62,95%" cols="*">
<frame name="TopFrame" src="Top.aspx" scrolling="no" noresize frameBorder="NO">
<frameset border="0" frameSpacing="0" rows="*" frameBorder="NO" cols="200,82%">
<frame name="MenuFrame" src="Menu.aspx" noResize >
<frame name="ContentFrame" src="SysParm.aspx">">
</frameset>

@ -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"%>
<%@ Import NameSpace="System.Data"%>
<%@ Register Src="../controls/PageNavigator.ascx" TagName="PageNavigator" 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>
<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 border="0" cellspacing="0" cellpadding="4" width="98%" align="center">
<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="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 border="0" cellspacing="0" cellpadding="4" width="98%" align="center">
<tr>
<td class="header">添加关键字信息</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 border="0" cellspacing="0" cellpadding="4" width="98%" align="center">
<tr>
<td class="header">修改关键字信息</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 style="background-color:#f5fbff;">
<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">
<div class="spaceborder" style="height:540px;">
<table width="98%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="2"></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="ReThink.aspx.cs" Inherits="Admin_ReThink" %>
<!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 border="0" cellspacing="0" cellpadding="4" width="98%" align="center">
<tr>
<td class="header">查看/回复建议</td>
</tr>

@ -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 Admin_ReThink : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

@ -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 border="0" cellspacing="0" cellpadding="4" width="98%" align="center">
<tr>
<td class="header">参数设置</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="Think.aspx.cs" Inherits="Admin_Think" %>
<%@ Import NameSpace="System.Data"%>
<%@ Register Src="../controls/PageNavigator.ascx" TagName="PageNavigator" 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 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 border="0" cellspacing="0" cellpadding="4" width="98%" align="center">

@ -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="Top.aspx.cs" Inherits="Admin_Top" %>
<!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>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr class="category">
<td align="left"><img src="/image/logo.gif"/></td>
</tr>
</table>

@ -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 Admin_Top : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

@ -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 @@
HTML {
OVERFLOW-X: hidden; OVERFLOW: auto;SCROLLBAR-FACE-COLOR: #fbffe1; SCROLLBAR-HIGHLIGHT-COLOR: #fff; SCROLLBAR-SHADOW-COLOR: #eeeeee; SCROLLBAR-3DLIGHT-COLOR: #eeeeee; SCROLLBAR-ARROW-COLOR: #000; SCROLLBAR-TRACK-COLOR: #fff; SCROLLBAR-DARKSHADOW-COLOR: #fff;
}
BODY {
FONT-SIZE: 12px; MARGIN: 0px; COLOR: #333333; FONT-FAMILY: Tahoma, Verdana; BACKGROUND-COLOR: #ffffff
}
FORM {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px
}
IMG {
BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-RIGHT-WIDTH: 0px
}
IMG.medals {
PADDING-RIGHT: 3px; PADDING-LEFT: 3px; FLOAT: left; PADDING-BOTTOM: 3px; PADDING-TOP: 3px
}

@ -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 rows="62,95%">
<frame name="TopFrame" src="Top.html" scrolling="no" noresize frameBorder="NO">
<frameset border="0" frameSpacing="0" rows="*" frameBorder="NO" cols="200,82%">
<frame name="LeftFrame" src="Left.html" scrolling="yes">
<frame name="RightFrame" src="Right.html" scrolling="yes">
</frameset>
<noframes>
<p><EFBFBD><EFBFBD>ҳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD><EFBFBD>֧<EFBFBD><EFBFBD>,<2C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֧<EFBFBD>ֿ<EFBFBD><D6BF>.</p>

@ -0,0 +1,2 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="HelpSearchAjax.aspx.cs" Inherits="HelpSearchAjax" %>

@ -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 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Help_Ajax.aspx.cs" Inherits="Help_Ajax" %>

@ -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 @@
<!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>ϵͳ__<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ|24xn.com</title>
<meta name="description" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<meta name="keywords" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<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">

@ -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><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ|24xn.com</title>
<meta name="description" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<meta name="keywords" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<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">

@ -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>IIS<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>__<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ|24xn.com</title>
<meta name="description" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<meta name="keywords" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<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">

@ -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><EFBFBD>ݿ<EFBFBD>__<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ|24xn.com</title>
<meta name="description" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<meta name="keywords" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<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">

@ -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>Web.Config__<5F><5F><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com</title>
<meta name="description" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<meta name="keywords" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<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">

@ -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><EFBFBD>̨__<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ|24xn.com</title>
<meta name="description" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<meta name="keywords" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<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">

@ -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>__<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ|24xn.com</title>
<meta name="description" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<meta name="keywords" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<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">

@ -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><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ__<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ|24xn.com</title>
<meta name="description" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<meta name="keywords" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<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">

@ -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>Ա<EFBFBD><EFBFBD><EFBFBD><EFBFBD>__<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ|24xn.com</title>
<meta name="description" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<meta name="keywords" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<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">

@ -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><EFBFBD><EFBFBD><EFBFBD><EFBFBD>__<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ|24xn.com</title>
<meta name="description" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<meta name="keywords" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<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">

@ -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><EFBFBD>Dz<EFBFBD><EFBFBD>Ǻܳ<EFBFBD><EFBFBD><EFBFBD>__<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ|24xn.com</title>
<meta name="description" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<meta name="keywords" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<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">

@ -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>51aspx<EFBFBD><EFBFBD><EFBFBD>߰<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ__<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ|24xn.com</title>
<meta name="description" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<meta name="keywords" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com" />
<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">

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="FileList.aspx.cs" Inherits="Inc_FileList" %>
<!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/Prototype.js"></script>
<script language="JavaScript" type="text/javascript" src="../JS/public.js"></script>
</head>
<body onload="javascript:getList(0,'');">
<form id="FormFile" runat="server">
<div id="FileList" runat="server"></div>
</form>

@ -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="Upload.aspx.cs" Inherits="Inc_Upload" %>
<!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" />
</head>
<base target="_self" />
<body>
<form id="f_Upload" runat="server" method="post" action="" enctype="multipart/form-data">
<table width="100%" align="center" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="header">文件上传</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 @@
/* 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><EFBFBD><EFBFBD>վ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ|24xn.com|<7C><><EFBFBD><EFBFBD>|<7C><>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|<7C><>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>|<7C><><EFBFBD><EFBFBD>ϵͳ</title>
<meta name="description" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com|<7C><><EFBFBD><EFBFBD>|<7C><>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|<7C><>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>|<7C><><EFBFBD><EFBFBD>ϵͳ|<7C><><EFBFBD>ڵ<EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD>߰<EFBFBD><DFB0><EFBFBD>ϵͳ" />
<meta name="keywords" content="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|24xn.com|<7C><><EFBFBD><EFBFBD>|<7C><>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ϵͳ|<7C><>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>|<7C><><EFBFBD><EFBFBD>ϵͳ" />
<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">

@ -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>{###BeginTitle###}</title>
<meta name="description" content="{###MetaDescription###}" />
<meta name="keywords" content="{###MetaKeywords###}" />
<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">

@ -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>邓西网站帮助系统</title>
<script language="JavaScript" type="text/javascript" src="JS/Prototype.js"></script>
<link href="Css/Css.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr class="category">
<td colspan="2"><div id="Logo"></div></td>
</tr>
</table>

@ -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=(local);uid=sa;pwd=sa;database=Help;"/>
<add key="Dir" value="Files"/>
<add key="dirM" value=""/>
<add key="UploadType" value="rar,txt,doc,jpg,jpeg,bmp,fla,wmv,rm,rmvb,gif"/>

@ -0,0 +1,11 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="PageNavigator.ascx.cs" Inherits="controls_PageNavigator" %>
共<asp:Label runat="server" ID="LblRecordCount"/>条记录,共<asp:Label runat="server" ID="LblPageCount"/>页,当前第<asp:Label runat="server" ID="LblPageIndex" />页
<asp:LinkButton ID="LnkBtnFirst" runat="server" CommandName="Page" OnClick="LnkBtnFirst_Click" CssClass="list_link">首页</asp:LinkButton>
<asp:LinkButton ID="LnkBtnPrevious" runat="server" CommandName="Page" OnClick="LnkBtnPrevious_Click" CssClass="list_link">上一页</asp:LinkButton>
<asp:LinkButton ID="LnkBtnNext" runat="server" CommandName="Page" OnClick="LnkBtnNext_Click" CssClass="list_link">下一页</asp:LinkButton>
<asp:LinkButton ID="LnkBtnLast" runat="server" CommandName="Page" OnClick="LnkBtnLast_Click" CssClass="list_link">尾页</asp:LinkButton>
<asp:textbox id="txtNewPageIndex" runat="server" width="20px" CssClass="form"/>
<asp:linkbutton id="LnkBtnGoto" runat="server" causesvalidation="False" commandargument="-1" commandname="Page" text="转到此页" OnClick="LnkBtnGoto_Click" CssClass="list_link" />

@ -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 delegate void PageChangeHandler(object send, int nPageIndex);
public partial class controls_PageNavigator : System.Web.UI.UserControl
{

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

Loading…
Cancel
Save