vote up 0 vote down star

Hi,

I need to rewrite the domain names on web pages served by a DLL that I have no way to change. I thought if there were events like OnFlush before Response.Flush occurs on the page I could do it all before the page is displayed. Is there a way to do this in ASP?

Thanks for your help.

P.S.: Something like Script_OnFlush in this APACHE extension: http://www.apache-asp.org/events.html


Following Nick's suggestion I have created a class that inherits from the Stream class. Response.Filter is using this class to work on the HTML content...

By overriding the Write method I managed to rewrite the domain names on the site.

    public override void Write(byte[] buffer, int offset, int count) 
    {
     byte [ ] data = new byte [ count ];
    Buffer.BlockCopy ( buffer, offset, data, 0, count );

    string myHTML = ASCIIEncoding.ASCII.GetString(data);
    string convertedHTML = myHTML.Replace("http://www.previousdomain.com", "http://www.currentdomain.com");

    data = ASCIIEncoding.ASCII.GetBytes(convertedHTML);

     _sink.Write ( data, 0, count );

    }

Thanks Nick!

flag

70% accept rate
Classic or .NET ASP? – AnthonyWJones Sep 8 at 7:37
Classic, I'm affraid. :( – G Berdal Sep 8 at 7:53
Are these dlls ISAPI extensions, filters or COM components called from ASP pages? – AnthonyWJones Sep 8 at 13:47
Third party COM components. – G Berdal Sep 8 at 14:24

1 Answer

vote up 1 vote down check

Yes you can overload the Response.Filter property, which acts as a filter for all content that is returned to the browser. You should do this in the PostReleaseRequestState in the Global.asax.

link|flag
Isn't this about ASP? Eg. not asp.net but classic asp. – svinto Sep 7 at 18:55
Nope, ASP.NET, if you don't want to use the Global.asax you can create your own module using IHttpModule interface. – Nick Berardi Sep 8 at 2:20
Thanks Nick, but I need to do this somehow in classic ASP. – G Berdal Sep 8 at 7:58
1  
Oh then you are out of luck with anything built in. You will need to write your own ISAPI provider, using C++. Sorry Classic ASP is just a scripting language. However if you were running this on IIS 7, you could use the integrated mode to code this in the same way I mentioned above. – Nick Berardi Sep 8 at 12:03
Thanks Nick. I'll check with IT about IIS 7. – G Berdal Sep 8 at 12:28
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.