Ah that's a nice tip. I might be able to add that to the master pages
I'm guessing that's exactly what is happening conflict wise. Gaia is
On Jan 3, 8:13 am, Andrew Davey <
and...@equin.co.uk> wrote:
> Nice work tracking down a work-around. I'm not sure why the output
> rewriting is breaking the page. Perhaps the Gaia control is also installing
> a response filter that conflicts with Cassette's. Let me know if you see it
> happening with other controls as well.
>
> Another useful trick to know is that the following will disable rewriting
> just for the current request:
> HttpContext.Current.Items.Add("Cassette.IsHtmlRewritingEnabled", false);
> Make sure it's added before the PostRequestHandlerExecute
asp.net pipeline
> step is executed e.g. on page load.
>
> Of course if you don't need rewriting at all, then leave it completely
> switched off in web.config.
>