Guys!
I have written a code to check how <scripting-invalid> works?
but I get the same answer with and without it.
Can you tell me what I did wrong?
web.xml
-------
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app >
<jsp-config>
<jsp-property-group>
<url-pattern>/result.jsp</url-pattern>
<scripting-invalid>true</scripting-invalid>
</jsp-property-group>
</jsp-config>
<
servlet>
<servlet-name>
test</servlet-name>
<jsp-file>/result.jsp</jsp-file>
</servlet>
<servlet-mapping>
<servlet-name>test</servlet-name>
<url-pattern>/EL.do</url-pattern>
</servlet-mapping>
</web-app>
result.jsp
----------
<html>
<body>
<%= "Hi This is JSP" %>
<% out.println("<br>This is a Scriptlet"); %>
</body>
</html>
Thank You!
:roll: