Files
MoonPro.net/MP-IO/Alive.aspx.cs
T
2016-11-11 18:13:50 +01:00

19 lines
407 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.Clear();
Response.Write("OK");
Context.Response.End();
}
}
}