初步搭建

This commit is contained in:
陈皓 2019-09-15 16:20:16 +08:00
parent eaf9e0b9ca
commit 186a667150
188 changed files with 1078 additions and 58 deletions

64
ServiceSite/MHHandler.cs Normal file
View File

@ -0,0 +1,64 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace ServiceSite
{
public class MHHandler : IHttpModule
{
public void Init(HttpApplication application)
{
application.BeginRequest +=
(new EventHandler(this.Application_BeginRequest));
application.EndRequest +=
(new EventHandler(this.Application_EndRequest));
}
/*
* http://w.com/12.html .aspx等处理直接转html页面
* .ico等不处理
* http://w.com/act/login.do等走cshtml分发处理 act调用方法
* http://w.com/actAj/login.aj走loginService ajax请求 actAj调用方法
* /Views/Home/Login.html Views/Home/Login.html区别
*/
/// <summary>
/// 页面处理,
/// </summary>
/// <param name="source"></param>
/// <param name="e"></param>
private void Application_BeginRequest(Object source,EventArgs e)
{
HttpApplication application = (HttpApplication)source;
HttpContext context = application.Context;
int p = context.Request.RawUrl.LastIndexOf('?');
String baseUrl = (p > 0) ? context.Request.RawUrl.Substring(0, p) : context.Request.RawUrl;
string filePath = context.Request.FilePath;
string fileExtension = VirtualPathUtility.GetExtension(filePath);
switch (fileExtension.ToLower())
{
case ".PHP":
case ".php":
baseUrl = baseUrl.Replace(".php", ".aspx");
baseUrl = baseUrl.Replace(".PHP", ".aspx");
context.RewritePath(baseUrl);
break;
}
}
private void Application_EndRequest(Object source, EventArgs e)
{
HttpApplication application = (HttpApplication)source;
HttpContext context = application.Context;
string filePath = context.Request.FilePath;
string fileExtension =
VirtualPathUtility.GetExtension(filePath);
if(fileExtension.Equals(".html"))
{
context.Response.Write("<hr><h1><font color=red>" +
"HelloWorldModule: End of Request</font></h1>");
}
}
public void Dispose() { }
}
}

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
此文件由 Web 项目的发布/打包过程使用。可以通过编辑此 MSBuild 文件
自定义此过程的行为。为了解与此相关的更多内容,请访问 https://go.microsoft.com/fwlink/?LinkID=208121。
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<WebPublishMethod>FileSystem</WebPublishMethod>
<PublishProvider>FileSystem</PublishProvider>
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
<LastUsedPlatform>Any CPU</LastUsedPlatform>
<SiteUrlToLaunchAfterPublish />
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish>
<ExcludeApp_Data>False</ExcludeApp_Data>
<publishUrl>bin\Release\Publish</publishUrl>
<DeleteExistingFiles>False</DeleteExistingFiles>
</PropertyGroup>
</Project>

View File

@ -69,35 +69,216 @@
</ItemGroup>
<ItemGroup>
<Content Include="Global.asax" />
<Content Include="php\MHPSP\DL_TOP.aspx" />
<Content Include="php\MHPSP\PNG\BG.png" />
<Content Include="php\MHPSP\PNG\BOARD.PNG" />
<Content Include="php\MHPSP\PNG\B_REC.PNG" />
<Content Include="php\MHPSP\PNG\B_START.PNG" />
<Content Include="php\MHPSP\PNG\B_TRI.PNG" />
<Content Include="php\MHPSP\PNG\B_X.PNG" />
<Content Include="php\MHPSP\PNG\LOGO1.PNG" />
<Content Include="php\MHPSP\PNG\LOGO2.PNG" />
<Content Include="php\MHPSP\PNG\T_GRN.PNG" />
<Content Include="php\MHPSP\PNG\T_RED.PNG" />
<Content Include="php\MHPSP\PNG\y20070222.png" />
<Content Include="psp\MHP2G\DL_SELECT.aspx" />
<Content Include="psp\MHP2G\DL_TOP.aspx" />
<Content Include="psp\MHP2G\GIF\BDL.gif" />
<Content Include="psp\MHP2G\GIF\BG.gif" />
<Content Include="psp\MHP2G\GIF\BONUS.gif" />
<Content Include="psp\MHP2G\GIF\BUTTON1.gif" />
<Content Include="psp\MHP2G\GIF\BUTTON2.gif" />
<Content Include="psp\MHP2G\GIF\BUTTON3.gif" />
<Content Include="psp\MHP2G\GIF\BUTTON4.gif" />
<Content Include="psp\MHP2G\GIF\BUTTON5.gif" />
<Content Include="psp\MHP2G\GIF\chacha.gif" />
<Content Include="psp\MHP2G\GIF\conga.gif" />
<Content Include="psp\MHP2G\GIF\DOWNLOAD.gif" />
<Content Include="psp\MHP2G\GIF\HUKIDASI.gif" />
<Content Include="psp\MHP2G\GIF\INFORMATION.gif" />
<Content Include="psp\MHP2G\GIF\KANBAN.gif" />
<Content Include="psp\MHP2G\GIF\LIST.gif" />
<Content Include="psp\MHP2G\GIF\LOGO1.gif" />
<Content Include="psp\MHP2G\GIF\LOGO10.gif" />
<Content Include="psp\MHP2G\GIF\LOGO11.gif" />
<Content Include="psp\MHP2G\GIF\LOGO13.gif" />
<Content Include="psp\MHP2G\GIF\LOGO14.gif" />
<Content Include="psp\MHP2G\GIF\LOGO15.gif" />
<Content Include="psp\MHP2G\GIF\LOGO2.gif" />
<Content Include="psp\MHP2G\GIF\LR.gif" />
<Content Include="psp\MHP2G\GIF\NEKO_NEW.gif" />
<Content Include="psp\MHP2G\GIF\PIG.gif" />
<Content Include="psp\MHP2G\GIF\QBOARD.gif" />
<Content Include="psp\MHP2G\GIF\QBOARD2.gif" />
<Content Include="psp\MHP2G\GIF\ro-dos.gif" />
<Content Include="psp\MHP2G\GIF\SELECT1.gif" />
<Content Include="psp\MHP2G\GIF\SELECT2.gif" />
<Content Include="psp\MHP2G\GIF\taru.gif" />
<Content Include="psp\MHP2G\GIF\T_PNK2.gif" />
<Content Include="psp\MHP2G\GIF\T_PPL.gif" />
<Content Include="psp\MHP2G\GIF\T_PPL2.gif" />
<Content Include="psp\MHP2G\GIF\T_RED.gif" />
<Content Include="psp\MHP2G\GIF\T_RED2.gif" />
<Content Include="psp\MHP2G\GIF\T_WHT.gif" />
<Content Include="psp\MHP2G\GIF\T_WHT2.gif" />
<Content Include="psp\MHP2G\PNG\b00000.png" />
<Content Include="psp\MHP2G\PNG\b00000[1].png" />
<Content Include="psp\MHP2G\PNG\b00001.png" />
<Content Include="psp\MHP2G\PNG\b00002.png" />
<Content Include="psp\MHP2G\PNG\b00003.png" />
<Content Include="psp\MHP2G\PNG\b00004.png" />
<Content Include="psp\MHP2G\PNG\b00005.png" />
<Content Include="psp\MHP2G\PNG\b00011.png" />
<Content Include="psp\MHP2G\PNG\bonus03.png" />
<Content Include="psp\MHP2G\PNG\bonus11.png" />
<Content Include="psp\MHP2G\PNG\bonus12.png" />
<Content Include="psp\MHP2G\PNG\bonus13.png" />
<Content Include="psp\MHP2G\PNG\bonus14.png" />
<Content Include="psp\MHP2G\PNG\bonus15.png" />
<Content Include="psp\MHP2G\PNG\bonus19.png" />
<Content Include="psp\MHP2G\PNG\c61002.png" />
<Content Include="psp\MHP2G\PNG\c61003.png" />
<Content Include="psp\MHP2G\PNG\c61004.png" />
<Content Include="psp\MHP2G\PNG\c61005.png" />
<Content Include="psp\MHP2G\PNG\c61006.png" />
<Content Include="psp\MHP2G\PNG\c61007.png" />
<Content Include="psp\MHP2G\PNG\c61008.png" />
<Content Include="psp\MHP2G\PNG\c61009.png" />
<Content Include="psp\MHP2G\PNG\c61010.png" />
<Content Include="psp\MHP2G\PNG\e60001.png" />
<Content Include="psp\MHP2G\PNG\e60002.png" />
<Content Include="psp\MHP2G\PNG\e60003.png" />
<Content Include="psp\MHP2G\PNG\e60004.png" />
<Content Include="psp\MHP2G\PNG\e60005.png" />
<Content Include="psp\MHP2G\PNG\e60006.png" />
<Content Include="psp\MHP2G\PNG\e60007.png" />
<Content Include="psp\MHP2G\PNG\e60008.png" />
<Content Include="psp\MHP2G\PNG\e60009.png" />
<Content Include="psp\MHP2G\PNG\e60010.png" />
<Content Include="psp\MHP2G\PNG\e60011.png" />
<Content Include="psp\MHP2G\PNG\e60012.png" />
<Content Include="psp\MHP2G\PNG\e60014.png" />
<Content Include="psp\MHP2G\PNG\e60015.png" />
<Content Include="psp\MHP2G\PNG\e60016.png" />
<Content Include="psp\MHP2G\PNG\e60017.png" />
<Content Include="psp\MHP2G\PNG\e60018.png" />
<Content Include="psp\MHP2G\PNG\e60019.png" />
<Content Include="psp\MHP2G\PNG\e60020.png" />
<Content Include="psp\MHP2G\PNG\e60021.png" />
<Content Include="psp\MHP2G\PNG\e60022.png" />
<Content Include="psp\MHP2G\PNG\e60023.png" />
<Content Include="psp\MHP2G\PNG\e60024.png" />
<Content Include="psp\MHP2G\PNG\e60025.png" />
<Content Include="psp\MHP2G\PNG\e60026.png" />
<Content Include="psp\MHP2G\PNG\e60027.png" />
<Content Include="psp\MHP2G\PNG\e60028.png" />
<Content Include="psp\MHP2G\PNG\e60029.png" />
<Content Include="psp\MHP2G\PNG\e60030.png" />
<Content Include="psp\MHP2G\PNG\e60031.png" />
<Content Include="psp\MHP2G\PNG\e60032.png" />
<Content Include="psp\MHP2G\PNG\e60033.png" />
<Content Include="psp\MHP2G\PNG\e60034.png" />
<Content Include="psp\MHP2G\PNG\e60035.png" />
<Content Include="psp\MHP2G\PNG\e60037.png" />
<Content Include="psp\MHP2G\PNG\e60038.png" />
<Content Include="psp\MHP2G\PNG\f00001.png" />
<Content Include="psp\MHP2G\PNG\f00002.png" />
<Content Include="psp\MHP2G\PNG\f00003.png" />
<Content Include="psp\MHP2G\PNG\f00004.png" />
<Content Include="psp\MHPSP\DL_BONUS.aspx" />
<Content Include="psp\MHPSP\DL_TOP.aspx" />
<Content Include="psp\MHPSP\PNG\BG.png" />
<Content Include="psp\MHPSP\PNG\BOARD.PNG" />
<Content Include="psp\MHPSP\PNG\B_REC.PNG" />
<Content Include="psp\MHPSP\PNG\B_START.PNG" />
<Content Include="psp\MHPSP\PNG\B_TRI.PNG" />
<Content Include="psp\MHPSP\PNG\B_X.PNG" />
<Content Include="psp\MHPSP\PNG\LOGO1.PNG" />
<Content Include="psp\MHPSP\PNG\LOGO2.PNG" />
<Content Include="psp\MHPSP\PNG\T_GRN.PNG" />
<Content Include="psp\MHPSP\PNG\T_RED.PNG" />
<Content Include="psp\MHPSP\PNG\y20070222.png" />
<Content Include="Web.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="Global.asax.cs">
<DependentUpon>Global.asax</DependentUpon>
</Compile>
<Compile Include="php\MHPSP\DL_TOP.aspx.cs">
<Compile Include="psp\MHP2G\DL_SELECT.aspx.cs">
<DependentUpon>DL_SELECT.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="psp\MHP2G\DL_SELECT.aspx.designer.cs">
<DependentUpon>DL_SELECT.aspx</DependentUpon>
</Compile>
<Compile Include="psp\MHP2G\DL_TOP.aspx.cs">
<DependentUpon>DL_TOP.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="php\MHPSP\DL_TOP.aspx.designer.cs">
<Compile Include="psp\MHP2G\DL_TOP.aspx.designer.cs">
<DependentUpon>DL_TOP.aspx</DependentUpon>
</Compile>
<Compile Include="psp\MHPSP\DL_BONUS.aspx.cs">
<DependentUpon>DL_BONUS.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="psp\MHPSP\DL_BONUS.aspx.designer.cs">
<DependentUpon>DL_BONUS.aspx</DependentUpon>
</Compile>
<Compile Include="psp\MHPSP\DL_TOP.aspx.cs">
<DependentUpon>DL_TOP.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="psp\MHPSP\DL_TOP.aspx.designer.cs">
<DependentUpon>DL_TOP.aspx</DependentUpon>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="MHHandler.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="Properties\PublishProfiles\FolderProfile.pubxml" />
<Content Include="psp\MHP2G\BONUS\bonus.mib" />
<Content Include="psp\MHP2G\QUEST\m60001.mib" />
<Content Include="psp\MHP2G\QUEST\m60002.mib" />
<Content Include="psp\MHP2G\QUEST\m60003.mib" />
<Content Include="psp\MHP2G\QUEST\m60004.mib" />
<Content Include="psp\MHP2G\QUEST\m60005.mib" />
<Content Include="psp\MHP2G\QUEST\m60006.mib" />
<Content Include="psp\MHP2G\QUEST\m60007.mib" />
<Content Include="psp\MHP2G\QUEST\m60008.mib" />
<Content Include="psp\MHP2G\QUEST\m60009.mib" />
<Content Include="psp\MHP2G\QUEST\m60010.mib" />
<Content Include="psp\MHP2G\QUEST\m60011.mib" />
<Content Include="psp\MHP2G\QUEST\m60012.mib" />
<Content Include="psp\MHP2G\QUEST\m60013.mib" />
<Content Include="psp\MHP2G\QUEST\m60014.mib" />
<Content Include="psp\MHP2G\QUEST\m60015.mib" />
<Content Include="psp\MHP2G\QUEST\m60016.mib" />
<Content Include="psp\MHP2G\QUEST\m60017.mib" />
<Content Include="psp\MHP2G\QUEST\m60018.mib" />
<Content Include="psp\MHP2G\QUEST\m60019.mib" />
<Content Include="psp\MHP2G\QUEST\m60020.mib" />
<Content Include="psp\MHP2G\QUEST\m60021.mib" />
<Content Include="psp\MHP2G\QUEST\m60022.mib" />
<Content Include="psp\MHP2G\QUEST\m60023.mib" />
<Content Include="psp\MHP2G\QUEST\m60024.mib" />
<Content Include="psp\MHP2G\QUEST\m60025.mib" />
<Content Include="psp\MHP2G\QUEST\m60026.mib" />
<Content Include="psp\MHP2G\QUEST\m60027.mib" />
<Content Include="psp\MHP2G\QUEST\m60028.mib" />
<Content Include="psp\MHP2G\QUEST\m60029.mib" />
<Content Include="psp\MHP2G\QUEST\m60030.mib" />
<Content Include="psp\MHP2G\QUEST\m60031.mib" />
<Content Include="psp\MHP2G\QUEST\m60032.mib" />
<Content Include="psp\MHP2G\QUEST\m60033.mib" />
<Content Include="psp\MHP2G\QUEST\m60034.mib" />
<Content Include="psp\MHP2G\QUEST\m60035.mib" />
<Content Include="psp\MHP2G\QUEST\m60036.mib" />
<Content Include="psp\MHP2G\QUEST\m60037.mib" />
<Content Include="psp\MHP2G\QUEST\m60038.mib" />
<Content Include="psp\MHP2G\QUEST\m61001.mib" />
<Content Include="psp\MHP2G\QUEST\m61002.mib" />
<Content Include="psp\MHP2G\QUEST\m61003.mib" />
<Content Include="psp\MHP2G\QUEST\m61004.mib" />
<Content Include="psp\MHP2G\QUEST\m61005.mib" />
<Content Include="psp\MHP2G\QUEST\m61006.mib" />
<Content Include="psp\MHP2G\QUEST\m61007.mib" />
<Content Include="psp\MHP2G\QUEST\m61008.mib" />
<Content Include="psp\MHP2G\QUEST\m61009.mib" />
<Content Include="psp\MHP2G\QUEST\m61010.mib" />
<Content Include="psp\MHP2G\QUEST\m61011.mib" />
<Content Include="psp\MHP2G\QUEST\m61012.mib" />
<Content Include="psp\MHP2G\QUEST\m61013.mib" />
<Content Include="psp\MHP2G\QUEST\m61014.mib" />
<None Include="Web.Debug.config">
<DependentUpon>Web.config</DependentUpon>
</None>
@ -108,7 +289,6 @@
<ItemGroup>
<Folder Include="App_Data\" />
<Folder Include="Models\" />
<Folder Include="php\MHP2G\GIF\" />
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>

View File

@ -9,6 +9,15 @@
<compilation debug="true" targetFramework="4.5"/>
<httpRuntime targetFramework="4.5"/>
</system.web>
<system.webServer>
<modules>
<add name="MvcTest.MyHandler" type="ServiceSite.MHHandler"/>
</modules>
<staticContent>
<mimeMap fileExtension=".mib" mimeType="text/plain; charset=Shift_JIS" />
</staticContent>
</system.webServer>
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs"

View File

@ -1,16 +0,0 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DL_TOP.aspx.cs" Inherits="ServiceSite.php.MHPSP.DL_TOP" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>

View File

@ -1,26 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
namespace ServiceSite.php.MHPSP
{
public partial class DL_TOP
{
/// <summary>
/// form1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1 @@
MHP2G BONUSX竩蝇=L癹'96覕:gj?帻Tu2摆砱q辖g

View File

@ -0,0 +1,42 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DL_SELECT.aspx.cs" Inherits="ServiceSite.psp.MHP2G.DL_SELECT" %>
<html>
<!--
<GAME-STYLE>
"MOUSE=OFF",
"SCROLL=OFF",
"TITLE=OFF",
"BACK=ON:DL_TOP.PHP",
"FORWARD=OFF",
"CANCEL=OFF",
"RELOAD=OFF",
"CHOICE_MV=OFF",
"LINK_U=OFF",
"FRONT_LABEL=ON:6",
"MOVE_CHAR=/MHP2G/GIF/ro-dos.gif,256,145,4,1,2,30,-82,100",
"MOVE_CHAR=/MHP2G/GIF/conga.gif,169,69,5,1,2,86,272,050",
</GAME-STYLE>
-->
<body text=white link=white vlink=white bgcolor=blue background=/MHP2G/GIF/BG.gif>
<basefont size=2>
<B>
<img src=/MHP2G/GIF/LOGO10.gif width=200 height=50 alt="Quest"><img src=/MHP2G/GIF/LOGO2.gif width=280 height=50 alt="MHP2nd"><br>
<table width=480 height=197 cellspacing=0 cellpadding=0 border=0>
<tr>
<form action="DL_MENU.PHP" method=get>
<td width=240 height=196 align=center valign=center>
<input type=hidden name=pg_no value=0>
<input ANIME=1 type=image src="/MHP2G/GIF/SELECT1.gif" name=submit width=190 height=160 alt="Event">
</td>
</form>
<form action="DL_CMENU.PHP" method=get>
<td width=240 height=196 align=center valign=center>
<input type=hidden name=pg_no value=0>
<input ANIME=1 type=image src="/MHP2G/GIF/SELECT2.gif" name=submit width=190 height=160 alt="Challenge">
</td>
</form>
</tr>
</table>
<table cellspacing=0 cellpadding=0><tr><td width=480 height=25 background=/MHP2G/GIF/BUTTON2.gif></td></tr></table>
</body>
</html>

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace ServiceSite.psp.MHP2G
{
public partial class DL_SELECT : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}

View File

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <自动生成>
// 此代码由工具生成。
//
// 对此文件的更改可能导致不正确的行为,如果
// 重新生成代码,则所做更改将丢失。
// </自动生成>
//------------------------------------------------------------------------------
namespace ServiceSite.psp.MHP2G {
public partial class DL_SELECT {
}
}

View File

@ -0,0 +1,64 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DL_TOP.aspx.cs" Inherits="ServiceSite.psp.MHP2G.DL_TOP" %>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>
</head>
<!--
<GAME-STYLE>
"MOUSE=OFF",
"SCROLL=OFF",
"TITLE=OFF",
"BACK=OFF",
"FORWARD=OFF",
"CANCEL=OFF",
"RELOAD=OFF",
"CHOICE_MV=OFF",
"LINK_U=OFF",
"FRONT_LABEL=ON:1",
"MOVE_CHAR=/GIF/NEKO_NEW.gif,122,62,3,,16,,348,143",
"MOVE_CHAR=/GIF/chacha.gif,42,65,2,1,4,20,480,030",
"MOVE_CHAR=/GIF/ro-dos.gif,256,145,4,1,2,30,-82,100",
</GAME-STYLE>
-->
<body text=white link=white vlink=white bgcolor=blue background=/GIF/BG.gif>
<basefont size=2>
<B>
<img src=/GIF/LOGO1.gif width=200 height=50 alt="Top"><img src=/GIF/LOGO2.gif width=280 height=50 alt="MHP2G"><br>
<table width=476 height=197 cellspacing=0 2 cellpadding=0 border=0>
<tr>
<td width=15>
</td>
<td width=200 210>
<table width=200 210 cellspacing=0 cellpadding=0>
<form action="DL_SELECT.PHP" method=get><tr><td>
<input type=image ANIME=20 src="/GIF/DOWNLOAD.gif" name=submit width=186 height=68 alt="Quest">
</td></tr></form>
<form action="DL_BONUS.PHP" method=get><tr><td>
<input type=image ANIME=20 src="/GIF/BONUS.gif" name=submit width=186 height=64 alt="Bonus">
</td></tr></form>
<form action="DB_INFO.PHP" method=get><tr><td>
<input type=image ANIME=20 src="/GIF/INFORMATION.gif" name=submit width=186 height=65 alt="Information"></a>
<input type=hidden name=pg_no value=0>
</td></tr></form>
</table>
</td>
<td width=260>
<table width=258 height=194 border=0 cellspacing=10 cellpadding=0 background=/GIF/KANBAN.gif>
<tr>
<td align=center>
<font color=orange><B>最新更新情報 </B></font><br>
</td>
</tr>
<tr>
<td valign=top><B>
≪12/19≫<BR>特典を1つ<BR>追加したのニャ!<BR><BR><BR><BR><BR>
</B></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=0 cellpadding=0 bgcolor=black><tr><td width=480 height=25 background=/GIF/BUTTON1.gif></td></tr></table>
</body>
</html>

View File

@ -5,7 +5,7 @@ using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace ServiceSite.php.MHPSP
namespace ServiceSite.psp.MHP2G
{
public partial class DL_TOP : System.Web.UI.Page
{

View File

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// <自动生成>
// 此代码由工具生成。
//
// 对此文件的更改可能导致不正确的行为,如果
// 重新生成代码,则所做更改将丢失。
// </自动生成>
//------------------------------------------------------------------------------
namespace ServiceSite.psp.MHP2G {
public partial class DL_TOP {
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 432 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 832 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 405 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 808 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 404 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 833 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1018 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

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