C#通过IHttpModule接口修改http输出的代码

把做工程过程中比较好的代码做个收藏,下边代码是关于C#通过IHttpModule接口修改http输出的代码,应该能对各位有一些用处。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace 修改_HTTP_输出
{
{
{
throw new NotImplementedException();
}
{

    }
    {
        c.Response.Write("你的请求被我在mould中改了");
    }
}

}

posted @ 2021-10-07 08:43  wezah05  阅读(62)  评论(0)    收藏  举报