ZhiYeJianKang_PeiXun/Song.Site/Handler1.ashx.cs
2025-02-20 15:41:53 +08:00

28 lines
546 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Song.Site
{
/// <summary>
/// Handler1 的摘要说明
/// </summary>
public class Handler1 : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
context.Response.Write("Hello World");
}
public bool IsReusable
{
get
{
return false;
}
}
}
}