htmlnoscripthtml-escape

How to avoid HTML escaping in noscript tag when including content using SSI


I have a jsp page with

<noscript>
    <!--#include virtual="path" -->
</noscript>

The include contains Text Result which I expect is the "Text" displayed in the browser. Instead of that I get "Text" displayed in the browser. Can I somehow render that HTML correctly?

UPDATE: When I enter on the page first time, raw HTML is displayed, but when I enter on the page second time, HTML is rendered correctly, and I get only "Text" text.


Solution

  • My issue was caused by bug in chrome. More details here: https://code.google.com/p/chromium/issues/detail?id=232410