55-10000 asp 一般处理程序的创建
//using System; //using System.Collections.Generic; //using System.Linq; //using System.Web; ////一般处理程序的创建 1 //namespace Webdemo1.Test //{ // /// <summary> // /// Delete.ashx 的摘要说明 // /// </summary> // public class Delete.ashx : IHttpHandler { // public void ProcessRequest (HttpContext context) { // context.Response.ContentType = "text/plain"; // context.Response.Write("Hello World"); // } // public bool IsReusable { // get { // return false; // } // } // } //}