master
editor 6 months ago
commit 64fc6fb941

@ -0,0 +1,40 @@
阿晶简单实用留言板V1.0
一、源码描述
环境VS2022 Access
二、功能介绍
采用ASP.NET(C#)写成的留言版,有一般留言版应有的功能,另外还加入了通过IP地址查询地区的功能.
支持多头像
默认的管理员admin密码51aspx,密码设置请修改Web.config文件
三、注意事项
1、管理员账号与密码admin 51aspx 。
2、ctrl+F5运行即可。
作者: 阿晶
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/WLTJUMX5YHW41
------------------------------------------------------------------------------------------------
源码服务专家
官网: 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 @@
using System.Reflection;
using System.Runtime.CompilerServices;
//
// <20>йس<D0B9><D8B3>򼯵ij<F2BCAFB5><C4B3><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2>ͨ<EFBFBD><CDA8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
//<2F><><EFBFBD>Լ<EFBFBD><D4BC><EFBFBD><EFBFBD>Ƶġ<C6B5><C4A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Щ<EFBFBD><D0A9><EFBFBD><EFBFBD>ֵ<EFBFBD><D6B5><EFBFBD>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2>
//
[assembly: AssemblyTitle("")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyTrademark("")]

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
//
// <20>йس<D0B9><D8B3>򼯵ij<F2BCAFB5><C4B3><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2>ͨ<EFBFBD><CDA8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
// <20><><EFBFBD>Լ<EFBFBD><D4BC><EFBFBD><EFBFBD>Ƶġ<C6B5><C4A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Щ<EFBFBD><D0A9><EFBFBD><EFBFBD>ֵ<EFBFBD><D6B5><EFBFBD>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2>
//
[assembly: AssemblyTitle("")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyTrademark("")]

@ -0,0 +1 @@
<%@ Application Codebehind="Global.asax.cs" Inherits="MessageBoard7.Web.Global" %>

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Web;
using System.Web.SessionState;
namespace MessageBoard7.Web
{
/// <summary>
/// Global <20><>ժҪ˵<D2AA><CBB5><EFBFBD><EFBFBD>
/// </summary>
public class Global : System.Web.HttpApplication
{
/// <summary>
/// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" ?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />

@ -0,0 +1,15 @@
<%@ Page language="c#" Codebehind="ListMessage.aspx.cs" AutoEventWireup="false" Inherits="MessageBoard7.Web.ListMessage" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title><3E><><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD></title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
<style>
BODY { FONT-SIZE: 9px }
</style>
</HEAD>
<body>
<form id="frmListmMessage" method="post" runat="server">

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using MessageBoard7.Classes;
namespace MessageBoard7.Web
{
/// <summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
<%@ Page language="c#" Codebehind="PostMessage.aspx.cs" AutoEventWireup="false" Inherits="MessageBoard7.Web.PostMessage" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body>
<form id="frmPostMessage" method="post" runat="server">
<P>
<asp:TextBox id="txtMessage" runat="server" EnableViewState="False" TextMode="MultiLine" Width="336px"
Height="160px"></asp:TextBox></P>

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using MessageBoard7.Classes;
namespace MessageBoard7.Web
{
/// <summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="SQLConnectionString" value="Data Source=.;User Id=sa;Password=51Aspx;Initial catalog=AspNetTest"/>
<add key="AccessProvider" value="Microsoft.Jet.OLEDB.4.0"/>
<add key="AccessDataSource" value="AccessData/MessageBoard.mdb"/>
<!--
<add key="AssemblyName" value="MessageBoard7.SQLServerDAL" />
<add key="Constructor" value="MessageBoard7.SQLServerDAL.Messages" />
-->
<add key="AssemblyName" value="MessageBoard7.AccessDAL"/>
<add key="Constructor" value="MessageBoard7.AccessDAL.Messages"/>
</appSettings>
<!--
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<ProductVersion>7.10.3077</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{E7EA77A3-4EAD-494E-B7F9-FBF9F6A9B3E4}</ProjectGuid>
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ApplicationIcon />
<AssemblyKeyContainerName />
<AssemblyName>MessageBoard7.Web</AssemblyName>
<AssemblyOriginatorKeyFile />
<DefaultClientScript>JScript</DefaultClientScript>
<DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="SQLConnectionString" value="Data Source=.;User Id=sa;Password=51Aspx;Initial catalog=AspNetTest"/>
<add key="AccessProvider" value="Microsoft.Jet.OLEDB.4.0"/>
<add key="AccessDataSource" value="AccessData/MessageBoard.mdb"/>
<!--
<add key="AssemblyName" value="MessageBoard7.SQLServerDAL" />
<add key="Constructor" value="MessageBoard7.SQLServerDAL.Messages" />
-->
<add key="AssemblyName" value="MessageBoard7.AccessDAL"/>
<add key="Constructor" value="MessageBoard7.AccessDAL.Messages"/>
</appSettings>
<!--
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.

@ -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,15 @@
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.Web.dll.config
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.Web.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.Web.pdb
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.AccessDAL.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.Classes.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.FacadeBLL.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.SQLServerDAL.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.DALFactory.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.IDAL.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.RulesBLL.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.FacadeBLL.pdb
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.Classes.pdb
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.AccessDAL.pdb
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.SQLServerDAL.pdb
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.DALFactory.pdb

@ -0,0 +1,40 @@
阿晶简单实用留言板V1.0
一、源码描述
环境VS2022 Access
二、功能介绍
采用ASP.NET(C#)写成的留言版,有一般留言版应有的功能,另外还加入了通过IP地址查询地区的功能.
支持多头像
默认的管理员admin密码51aspx,密码设置请修改Web.config文件
三、注意事项
1、管理员账号与密码admin 51aspx 。
2、ctrl+F5运行即可。
作者: 阿晶
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/WLTJUMX5YHW41
------------------------------------------------------------------------------------------------
源码服务专家
官网: 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 @@
using System.Reflection;
using System.Runtime.CompilerServices;
//
// <20>йس<D0B9><D8B3>򼯵ij<F2BCAFB5><C4B3><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2>ͨ<EFBFBD><CDA8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
//<2F><><EFBFBD>Լ<EFBFBD><D4BC><EFBFBD><EFBFBD>Ƶġ<C6B5><C4A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Щ<EFBFBD><D0A9><EFBFBD><EFBFBD>ֵ<EFBFBD><D6B5><EFBFBD>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2>
//
[assembly: AssemblyTitle("")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyTrademark("")]

@ -0,0 +1,15 @@
using System.Reflection;
using System.Runtime.CompilerServices;
//
// <20>йس<D0B9><D8B3>򼯵ij<F2BCAFB5><C4B3><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2>ͨ<EFBFBD><CDA8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
// <20><><EFBFBD>Լ<EFBFBD><D4BC><EFBFBD><EFBFBD>Ƶġ<C6B5><C4A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Щ<EFBFBD><D0A9><EFBFBD><EFBFBD>ֵ<EFBFBD><D6B5><EFBFBD>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2>
//
[assembly: AssemblyTitle("")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyTrademark("")]

@ -0,0 +1 @@
<%@ Application Codebehind="Global.asax.cs" Inherits="MessageBoard7.Web.Global" %>

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Web;
using System.Web.SessionState;
namespace MessageBoard7.Web
{
/// <summary>
/// Global <20><>ժҪ˵<D2AA><CBB5><EFBFBD><EFBFBD>
/// </summary>
public class Global : System.Web.HttpApplication
{
/// <summary>
/// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" ?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />

@ -0,0 +1,15 @@
<%@ Page language="c#" Codebehind="ListMessage.aspx.cs" AutoEventWireup="false" Inherits="MessageBoard7.Web.ListMessage" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title><3E><><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD></title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
<style>
BODY { FONT-SIZE: 9px }
</style>
</HEAD>
<body>
<form id="frmListmMessage" method="post" runat="server">

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using MessageBoard7.Classes;
namespace MessageBoard7.Web
{
/// <summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
<%@ Page language="c#" Codebehind="PostMessage.aspx.cs" AutoEventWireup="false" Inherits="MessageBoard7.Web.PostMessage" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body>
<form id="frmPostMessage" method="post" runat="server">
<P>
<asp:TextBox id="txtMessage" runat="server" EnableViewState="False" TextMode="MultiLine" Width="336px"
Height="160px"></asp:TextBox></P>

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using MessageBoard7.Classes;
namespace MessageBoard7.Web
{
/// <summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="SQLConnectionString" value="Data Source=.;User Id=sa;Password=51Aspx;Initial catalog=AspNetTest"/>
<add key="AccessProvider" value="Microsoft.Jet.OLEDB.4.0"/>
<add key="AccessDataSource" value="AccessData/MessageBoard.mdb"/>
<!--
<add key="AssemblyName" value="MessageBoard7.SQLServerDAL" />
<add key="Constructor" value="MessageBoard7.SQLServerDAL.Messages" />
-->
<add key="AssemblyName" value="MessageBoard7.AccessDAL"/>
<add key="Constructor" value="MessageBoard7.AccessDAL.Messages"/>
</appSettings>
<!--
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<ProductVersion>7.10.3077</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{E7EA77A3-4EAD-494E-B7F9-FBF9F6A9B3E4}</ProjectGuid>
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ApplicationIcon />
<AssemblyKeyContainerName />
<AssemblyName>MessageBoard7.Web</AssemblyName>
<AssemblyOriginatorKeyFile />
<DefaultClientScript>JScript</DefaultClientScript>
<DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="SQLConnectionString" value="Data Source=.;User Id=sa;Password=51Aspx;Initial catalog=AspNetTest"/>
<add key="AccessProvider" value="Microsoft.Jet.OLEDB.4.0"/>
<add key="AccessDataSource" value="AccessData/MessageBoard.mdb"/>
<!--
<add key="AssemblyName" value="MessageBoard7.SQLServerDAL" />
<add key="Constructor" value="MessageBoard7.SQLServerDAL.Messages" />
-->
<add key="AssemblyName" value="MessageBoard7.AccessDAL"/>
<add key="Constructor" value="MessageBoard7.AccessDAL.Messages"/>
</appSettings>
<!--
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.

@ -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,15 @@
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.Web.dll.config
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.Web.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.Web.pdb
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.AccessDAL.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.Classes.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.FacadeBLL.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.SQLServerDAL.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.DALFactory.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.IDAL.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.RulesBLL.dll
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.FacadeBLL.pdb
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.Classes.pdb
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.AccessDAL.pdb
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.SQLServerDAL.pdb
C:\Users\coder\Desktop\2024Code\3\20240320\update\JMWQZM6NWKG61\Web\bin\MessageBoard7.DALFactory.pdb

Binary file not shown.

Binary file not shown.

@ -0,0 +1 @@
<%@ Application Codebehind="Global.asax.cs" Inherits="GuestBook.Global" %>

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Web;
using System.Web.SessionState;
namespace GuestBook
{
/// <summary>
/// Global <20><>ժҪ˵<D2AA><CBB5><EFBFBD><EFBFBD>
/// </summary>
public class Global : System.Web.HttpApplication
{
public Global()
{

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" ?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />

@ -0,0 +1,15 @@
<%@ Page language="c#" Codebehind="Guest.aspx.cs" AutoEventWireup="false" Inherits="GuestBook.GuestBook" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title><3E><><EFBFBD><EFBFBD></title>
<meta content="True" name="vs_showGrid">
<meta content="Microsoft Visual Studio 7.0" name="GENERATOR">
<meta content="C#" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
<LINK href="my.css" type="text/css" rel="stylesheet">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</HEAD>
<body vLink="#000000" aLink="#000000" link="#000000" background="pic/bg01.gif">
<form id="Form1" method="post" runat="server">

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.OleDb;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.IO;
namespace GuestBook
{

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
<VisualStudioProject>
<CSHARP
ProjectType = "Web"
ProductVersion = "7.10.3077"
SchemaVersion = "2.0"
ProjectGuid = "{261AA789-C0A1-4013-9EB0-82B22155C37F}"
>
<Build>
<Settings
ApplicationIcon = ""
AssemblyKeyContainerName = ""
AssemblyName = "GuestBook"
AssemblyOriginatorKeyFile = ""
DefaultClientScript = "JScript"
DefaultHTMLPageLayout = "Grid"

@ -0,0 +1,15 @@
<%@ Page Language="c#" ContentType="text/html" ResponseEncoding="gb2312" CodeBehind="Login.aspx.cs" AutoEventWireup="false" Inherits="GuestBook.Login" %>
<HTML>
<HEAD>
<title><3E><><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1>½</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="my.css" rel="stylesheet" type="text/css">
</HEAD>
<body link="#000000" vlink="#000000" alink="#000000">
<form runat="server">
<table width="200" border="0" align="center" cellpadding="6" cellspacing="1" bgcolor="#000000">
<tr>
<td bgcolor="#e8f5ff">
<p><font color="#000000"><BR>
<09><><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD>:
<asp:TextBox id="txtAdmin" runat="server" Width="104px" BorderStyle="Solid" BorderWidth="1px"

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Configuration;
namespace GuestBook
{
/// <summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
<%@ Page language="c#" Codebehind="Reply.aspx.cs" AutoEventWireup="false" Inherits="GuestBook.Reply" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title><3E><><EFBFBD><EFBFBD>Ա<EFBFBD>ظ<EFBFBD></title>
<meta name="GENERATOR" Content="Microsoft Visual Studio 7.0">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
<link href="my.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</HEAD>
<body background="pic/bg01.gif" link="#000000" vlink="#000000" alink="#000000">
<form id="test" method="post" runat="server">
<P>

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.OleDb;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
namespace GuestBook
{
/// <summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
<!DOCTYPE html>
<!-- saved from url=(0014)about:internet -->
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt"><head><meta content="en-us" http-equiv="Content-Language" /><meta content="text/html; charset=utf-16" http-equiv="Content-Type" /><title _locID="ConversionReport0">
Migration Report
</title><style>
/* Body style, for the entire document */
body
{
background: #F3F3F4;
color: #1E1E1F;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
padding: 0;
margin: 0;
}

@ -0,0 +1,15 @@
<%@ Page CodeBehind="View.aspx.cs" Language="c#" AutoEventWireup="false" Inherits="GuestBook.View" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<title><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>԰<EFBFBD></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href="my.css" type="text/css" rel="stylesheet">
</HEAD>
<body vLink="#000000" aLink="#000000" link="#000000" bgColor="#999999" leftMargin="0"
background="pic/bg01.gif" topMargin="0" marginwidth="0" marginheight="0">
<form runat="server">
<table cellSpacing="0" cellPadding="0" width="100%" border="0">
<TBODY>
<tr>
<td width="5%">&nbsp;</td>

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.OleDb;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
namespace GuestBook
{
/// <summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<!-- 管理员密码设置 -->
<appSettings>
<add key="User" value="admin" />
<add key="Pass" value="51aspx" />
</appSettings>
<system.web>
<!-- 动态调试编译
设置 compilation debug="true" 以启用 ASPX 调试。否则,将此值设置为
false 将提高此应用程序的运行时性能。
设置 compilation debug="true" 以将调试符号(.pdb 信息)
插入到编译页中。因为这将创建执行起来

@ -0,0 +1,15 @@
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD>ֻ<EFBFBD><EFBFBD>ʾ<EFBFBD><EFBFBD>ѹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Դ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>վ
-------------------------------------------------------------------------
Դ<EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>°<EFBFBD>
http://www.likecode.com
Email:likecode@163.com
VB<EFBFBD><EFBFBD>DELPHI<EFBFBD><EFBFBD>.NET<45><54><EFBFBD>Դ<EFBFBD><D4B4><EFBFBD><EFBFBD><EFBFBD>أ<EFBFBD><D8A3><EFBFBD>Ʒ<EFBFBD><C6B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̳<EFBFBD><CCB3>֧<EFBFBD><D6A7>WEB/FTP<54>ļ<EFBFBD><C4BC>ϴ<EFBFBD><CFB4><EFBFBD>
likecode<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̳
http://bbs.likecode.com

@ -0,0 +1,6 @@
<Script Language="C#" Runat="Server">
public void Page_Load(Object o,EventArgs e)
{
Response.Redirect("view.aspx");
}
</Script>

@ -0,0 +1,11 @@
font {
font-family: "<22><><EFBFBD><EFBFBD>";
font-size: 12px;
}
a {
text-decoration: none;
}
a:hover {
color: #FF6600;
}

@ -0,0 +1,8 @@
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>԰<EFBFBD>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ASP.NET(C#)д<>ɵ<EFBFBD><C9B5><EFBFBD><EFBFBD>԰<EFBFBD>,<2C><>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD>԰<EFBFBD>Ӧ<EFBFBD>еĹ<D0B5><C4B9><EFBFBD>,<2C><><EFBFBD><EFBFBD><E2BBB9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͨ<EFBFBD><CDA8>IP<49><50>ַ<EFBFBD><D6B7>ѯ<EFBFBD><D1AF><EFBFBD><EFBFBD><EFBFBD>Ĺ<EFBFBD><C4B9><EFBFBD>.
֧<EFBFBD>ֶ<EFBFBD>ͷ<EFBFBD><EFBFBD>
<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ص<EFBFBD>ַ http://www.51aspx.com
Ĭ<EFBFBD>ϵĹ<EFBFBD><EFBFBD><EFBFBD>Աadmin<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>51aspx,<2C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>޸<EFBFBD>Web.config<69>ļ<EFBFBD>

@ -0,0 +1 @@
<%@ Application Codebehind="Global.asax.cs" Inherits="GuestBook.Global" %>

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Web;
using System.Web.SessionState;
namespace GuestBook
{
/// <summary>
/// Global <20><>ժҪ˵<D2AA><CBB5><EFBFBD><EFBFBD>
/// </summary>
public class Global : System.Web.HttpApplication
{
public Global()
{

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" ?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />

@ -0,0 +1,15 @@
<%@ Page language="c#" Codebehind="Guest.aspx.cs" AutoEventWireup="false" Inherits="GuestBook.GuestBook" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title><3E><><EFBFBD><EFBFBD></title>
<meta content="True" name="vs_showGrid">
<meta content="Microsoft Visual Studio 7.0" name="GENERATOR">
<meta content="C#" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
<LINK href="my.css" type="text/css" rel="stylesheet">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</HEAD>
<body vLink="#000000" aLink="#000000" link="#000000" background="pic/bg01.gif">
<form id="Form1" method="post" runat="server">

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.OleDb;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.IO;
namespace GuestBook
{

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<ProductVersion>7.10.3077</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{261AA789-C0A1-4013-9EB0-82B22155C37F}</ProjectGuid>
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ApplicationIcon />
<AssemblyKeyContainerName />
<AssemblyName>GuestBook</AssemblyName>
<AssemblyOriginatorKeyFile />
<DefaultClientScript>JScript</DefaultClientScript>
<DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>

@ -0,0 +1,15 @@
<%@ Page Language="c#" ContentType="text/html" ResponseEncoding="gb2312" CodeBehind="Login.aspx.cs" AutoEventWireup="false" Inherits="GuestBook.Login" %>
<HTML>
<HEAD>
<title><3E><><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1>½</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="my.css" rel="stylesheet" type="text/css">
</HEAD>
<body link="#000000" vlink="#000000" alink="#000000">
<form runat="server">
<table width="200" border="0" align="center" cellpadding="6" cellspacing="1" bgcolor="#000000">
<tr>
<td bgcolor="#e8f5ff">
<p><font color="#000000"><BR>
<09><><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD>:
<asp:TextBox id="txtAdmin" runat="server" Width="104px" BorderStyle="Solid" BorderWidth="1px"

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Configuration;
namespace GuestBook
{
/// <summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
<%@ Page language="c#" Codebehind="Reply.aspx.cs" AutoEventWireup="false" Inherits="GuestBook.Reply" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title><3E><><EFBFBD><EFBFBD>Ա<EFBFBD>ظ<EFBFBD></title>
<meta name="GENERATOR" Content="Microsoft Visual Studio 7.0">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
<link href="my.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</HEAD>
<body background="pic/bg01.gif" link="#000000" vlink="#000000" alink="#000000">
<form id="test" method="post" runat="server">
<P>

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.OleDb;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
namespace GuestBook
{
/// <summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
<!DOCTYPE html>
<!-- saved from url=(0014)about:internet -->
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt"><head><meta content="en-us" http-equiv="Content-Language" /><meta content="text/html; charset=utf-16" http-equiv="Content-Type" /><title _locID="ConversionReport0">
Migration Report
</title><style>
/* Body style, for the entire document */
body
{
background: #F3F3F4;
color: #1E1E1F;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
padding: 0;
margin: 0;
}

@ -0,0 +1,15 @@
<!DOCTYPE html>
<!-- saved from url=(0014)about:internet -->
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt"><head><meta content="en-us" http-equiv="Content-Language" /><meta content="text/html; charset=utf-16" http-equiv="Content-Type" /><title _locID="ConversionReport0">
Migration Report
</title><style>
/* Body style, for the entire document */
body
{
background: #F3F3F4;
color: #1E1E1F;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
padding: 0;
margin: 0;
}

@ -0,0 +1,15 @@
<%@ Page CodeBehind="View.aspx.cs" Language="c#" AutoEventWireup="false" Inherits="GuestBook.View" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<title><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>԰<EFBFBD></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href="my.css" type="text/css" rel="stylesheet">
</HEAD>
<body vLink="#000000" aLink="#000000" link="#000000" bgColor="#999999" leftMargin="0"
background="pic/bg01.gif" topMargin="0" marginwidth="0" marginheight="0">
<form runat="server">
<table cellSpacing="0" cellPadding="0" width="100%" border="0">
<TBODY>
<tr>
<td width="5%">&nbsp;</td>

@ -0,0 +1,15 @@
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.OleDb;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
namespace GuestBook
{
/// <summary>

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<configuration>
<!-- 管理员密码设置 -->
<appSettings>
<add key="User" value="admin"/>
<add key="Pass" value="51aspx"/>
</appSettings>
<!--
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
The following attributes can be set on the <httpRuntime> tag.
<system.Web>
<httpRuntime targetFramework="4.8" />
</system.Web>
-->

@ -0,0 +1,6 @@
<Script Language="C#" Runat="Server">
public void Page_Load(Object o,EventArgs e)
{
Response.Redirect("view.aspx");
}
</Script>

@ -0,0 +1,11 @@
font {
font-family: "<22><><EFBFBD><EFBFBD>";
font-size: 12px;
}
a {
text-decoration: none;
}
a:hover {
color: #FF6600;
}
Loading…
Cancel
Save