1234567891011121314151617 |
- using System.Web;
- using System.Web.Script.Serialization;
- public class PlaintextHandler : IHttpHandler
- {
- bool IHttpHandler.IsReusable
- {
- get { return true; }
- }
- void IHttpHandler.ProcessRequest(HttpContext context)
- {
- HttpResponse response = context.Response;
- response.ContentType = "text/plain";
- response.Write("Hello, World!");
- }
- }
|