HttpModule,Response.Filter和图像未显示

时间:2009-09-13 13:17:48

标签: c# asp.net httpmodule

HttpModule工作正常(“hello”替换为“hello world”)但由于某些原因,当模块添加到Web.config时,WebForms上的图像不会显示。从Web.config中删除模块后,将显示WebForms上的图像。

有谁知道为什么?

使用或不使用HttpModule生成的HTML完全相同!

//The HttpModule

public class MyModule : IHttpModule
{
        #region IHttpModule Members

        public void Dispose()
        {
            //Empty
        }

        public void Init(HttpApplication context)
        {
            context.BeginRequest += new EventHandler(OnBeginRequest);
            application = context;
        }

        #endregion

        void OnBeginRequest(object sender, EventArgs e)
        {
            application.Response.Filter = new MyStream(application.Response.Filter);
        }
}

//过滤器 - 将“hello”替换为“hello world”

public class MyStream : MemoryStream
{
        private Stream outputStream = null;

        public MyStream(Stream output)
        {
            outputStream = output;
        }

        public override void Write(byte[] buffer, int offset, int count)
        {

            string bufferContent = UTF8Encoding.UTF8.GetString(buffer);
            bufferContent = bufferContent.Replace("hello", "hello world");
            outputStream.Write(UTF8Encoding.UTF8.GetBytes(bufferContent), offset, UTF8Encoding.UTF8.GetByteCount(bufferContent));

            base.Write(buffer, offset, count);
        }
}

2 个答案:

答案 0 :(得分:4)

您是否将模块应用于所有请求?你不应该,因为它会弄乱任何二进制文件。您可能只是让事件处理程序仅在内容类型合适时才应用过滤器。

最好只将模块应用于特定的扩展,但最开始。

老实说,你的流实现也有点狡猾 - 对于在UTF-8编码时占用多个字节的字符,它很可能会失败,并且即使只写了部分缓冲区,你也要解码整个缓冲区。另外,你可能会把“你好”分成“他”,然后分开你当前没有应对的“llo”。

答案 1 :(得分:3)

尝试这样做,这只会安装aspx页面的过滤器,所有其他网址都可以正常工作。

void OnBeginRequest(object sender, EventArgs e)    
{
     if(Request.Url.ToString().Contains(".aspx"))        
         application.Response.Filter = new MyStream(application.Response.Filter);    
}

有几个属性,您必须尝试使用​​Response.Url.AbsolutePath或其他一些能够提供完美结果的代码。