转换
asph处理程序如下:
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace 异步刷新 { ////// test1 的摘要说明 /// public class test1 : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; string name = context.Request["Name"]; context.Response.Write(name); } public bool IsReusable { get { return false; } } } }