如何从HttpModule中检索响应html?

spi*_*ton 10 html c# asp.net httpmodule

这是我特别想要做的事情:

我写了一个HttpModule来做一些特定于站点的跟踪.我们网站上的一些旧的.aspx页面是硬编码的,没有真正的控件,但它们是.aspx文件,因此我的模块在请求时仍然运行.

我的模块的处理程序附加到PostRequestHandlerExecute,所以我相信应该已经确定将发送回请求者的内容.

我需要能够提取标题标签中的任何字符串.

因此,如果

<title>Chunky Bacon</title>
Run Code Online (Sandbox Code Playgroud)

在最终呈现的HTML中发送给请求者.然后我想要"Chunky Bacon".

想法?

Ric*_*ber 25

有趣的小挑战.

这是代码:

StreamWatcher.cs

    public class StreamWatcher : Stream
    {
        private Stream _base;
        private MemoryStream _memoryStream = new MemoryStream();

        public StreamWatcher(Stream stream)
        {
            _base = stream;
        }

        public override void Flush()
        {
            _base.Flush();
        }

        public override int Read(byte[] buffer, int offset, int count)
        {
            return _base.Read(buffer, offset, count);
        }

        public override void Write(byte[] buffer, int offset, int count)
        {
            _memoryStream.Write(buffer, offset, count);
            _base.Write(buffer, offset, count);
        }

        public override string ToString()
        {
            return Encoding.UTF8.GetString(_memoryStream.ToArray());
        }

        #region Rest of the overrides
        public override bool CanRead
        {
            get { throw new NotImplementedException(); }
        }

        public override bool CanSeek
        {
            get { throw new NotImplementedException(); }
        }

        public override bool CanWrite
        {
            get { throw new NotImplementedException(); }
        }

        public override long Seek(long offset, SeekOrigin origin)
        {
            throw new NotImplementedException();
        }

        public override void SetLength(long value)
        {
            throw new NotImplementedException();
        }

        public override long Length
        {
            get { throw new NotImplementedException(); }
        }

        public override long Position
        {
            get
            {
                throw new NotImplementedException();
            }
            set
            {
                throw new NotImplementedException();
            }
        }
        #endregion
    }
Run Code Online (Sandbox Code Playgroud)

TitleModule.cs

public class TitleModule : IHttpModule
{
    public void Dispose()
    {
    }

    private static Regex regex = new Regex(@"(?<=<title>)[\w\s\r\n]*?(?=</title)", RegexOptions.Compiled | RegexOptions.IgnoreCase);
    private StreamWatcher _watcher;
    public void Init(HttpApplication context)
    {
        context.BeginRequest += (o, e) => 
        {
            _watcher = new StreamWatcher(context.Response.Filter);
            context.Response.Filter = _watcher;
        };


        context.EndRequest += (o, e) =>
        {
            string value = _watcher.ToString();
            Trace.WriteLine(regex.Match(value).Value.Trim());
        };
    }
}
Run Code Online (Sandbox Code Playgroud)

  • `TitleModule` 是 Application 范围内的单例。因此,将“_watcher”存储为“TitleModule”的字段是一个坏主意,因为它可以在不同的请求之间共享。您不需要存储“StreamWatcher”,因为您正在为其分配“context.Response.Filter”,并且稍后可以从那里获取它。 (2认同)