customhandler.cs

来自「这是《ASP.NET编程实作教程》一书中的源文件 如果有此书的朋友不防下载过来参」· CS 代码 · 共 19 行

CS
19
字号
using System.Web;

namespace mySample {

    public class Customhandler : IHttpHandler {
    
        //输出"Hello World!"字样
        public void ProcessRequest(HttpContext context) {
            context.Response.Write("Hello World!");
        }

        public bool IsReusable {
            get {
                return true;
            }
        } 
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?