TEST3

来源:互联网 发布:mysql更新语句怎么写 编辑:程序博客网 时间:2024/04/30 08:03

 <%@ WebHandler Language="C#" Class="MyHttpHandler"  %>

using System;
using System.Web;

public class MyHttpHandler : IHttpHandler {
   
    public void ProcessRequest (HttpContext context) {
        context.Response.ContentType = "text/plain";
        context.Response.Write("Hello World");
    }
 
    public bool IsReusable {
        get {
            return false;
        }
    }

}

原创粉丝点击