Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 361485
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T12:53:36+00:00 2026-05-12T12:53:36+00:00

Here is what I’m specifically trying to do: I have written a HttpModule to

  • 0

Here is what I’m specifically trying to do:

I have written a HttpModule to do some site specific tracking. Some old .aspx pages on our site are hard coded with no real controls, but they are .aspx files so my module still runs when they are requested.

My module’s handler is attached to the PostRequestHandlerExecute, so I believe what will be sent back to the requester should have already been determined.

I need to be able to extract whatever string is in the title tag.

So if

<title>Chunky Bacon</title>

is sent to the requester in the final rendered HTML. Then I want “Chunky Bacon”.

Ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T12:53:37+00:00Added an answer on May 12, 2026 at 12:53 pm

    Fun little challenge.

    Here’s the code:

    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
        }
    

    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());
            };
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 209k
  • Answers 209k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I don't know how your formular looks and where you… May 12, 2026 at 9:43 pm
  • Editorial Team
    Editorial Team added an answer There is a difference between ViewState (what you are talking… May 12, 2026 at 9:43 pm
  • Editorial Team
    Editorial Team added an answer If you want to avoid the spikes associated with using… May 12, 2026 at 9:43 pm

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on
Here is what I have: JAVA_HOME=C:\Software\Java\jdk1.5.0_12 (points to JDK 5.0) In Eclipse Installed Runtimes
Here is what I am trying to do: Given a date, a day of
Here is what I need to be able to do: I need to match

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.