<%@ WebHandler Language="C#" Class="addressLookup" %> using System; using System.Web; public class addressLookup : IHttpHandler { public void ProcessRequest (HttpContext context) { context.Response.ContentType = "text/html; charset=windows-1252"; context.Response.AddHeader("Cache-Control", "no-cache"); context.Response.Write("Hello\r\n"); context.Response.Write(""); context.Response.Write("" + "Hello World" + "\r\n"); context.Response.Write(""); } // end ProcessRequest public bool IsReusable { get { return false; } } }