我可以在结束HTML标记之前使用IHttpModule插入标记吗?

时间:2013-11-07 18:39:14

标签: c# asp.net httpmodule

如果我使用以下事件处理程序编写ASP.NET HTTP模块:

    void context_EndRequest(object sender, EventArgs e)
    {
        var app = sender as HttpApplication;
        if (app == null) return;

        app.Context.Response.Output.Write("<h1>FOOOOOOOOOOOOOOOOOOOOOOOOOO</h1>");
    }

然后我在每个回复结束时得到这样的东西:

</body>
</html>
<h1>FOOOOOOOOOOOOOOOOOOOOOOOOOO</h1>

有没有办法使用相同的方法,但将我的注入标记正确地放入HTML文档?

0 个答案:

没有答案