22 lines
463 B
C#
22 lines
463 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace MP_IO
|
|
{
|
|
public partial class Alive : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
Response.Redirect("IOB");
|
|
#if false
|
|
Response.Clear();
|
|
Response.Write("OK");
|
|
Context.Response.End();
|
|
#endif
|
|
}
|
|
}
|
|
} |