19 lines
375 B
Plaintext
19 lines
375 B
Plaintext
<%@ WebHandler Language="C#" Class="Handler" %>
|
|
|
|
using System;
|
|
using System.Web;
|
|
|
|
public class Handler : IHttpHandler {
|
|
|
|
public void ProcessRequest (HttpContext context) {
|
|
context.Response.ContentType = "text/plain";
|
|
context.Response.Write("Hello World");
|
|
}
|
|
|
|
public bool IsReusable {
|
|
get {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
} |