posted 9 years ago
hi ,
I am facing one issue while trying to avoid the XSS scripting issue. I have code like
<h:outputText id="text49"
value="#{History.abc}"
styleClass="outputText"
escape="false">
</h:outputText>
This code is throwing XSS scripting issue. So i am thinking the easy way to get rid of it just by using <c:out inside value attribute.
But its failing in compilation. Is there any other way i can escape from XSS scripting.
Please help me.