Given the element from the web application deployment descriptor:<br /> <jsp-property-group><br /> <url-pattern>/main/page1.jsp</url-pattern><br /> <scripting-invalid>true</scripting-invalid><br /> </jsp-property-group><br /> and given that /main/page1.jsp contains:<br /> <% int i = 12; %><br /> <b><%= i %></b> <br /> What is the result?()<p> Given the element from the web application deployment descriptor:<br /> <jsp-property-group><br /> <url-pattern>/main/page1.jsp</url-pattern><br /> <scripting-invalid>true</scripting-invalid><br /> </jsp-property-group><br /> and given that /main/page1.jsp contains:<br /> <% int i = 12; %><br /> <b><%= i %></b> <br />
A、A.<b></b>
B、B.<b>12</b>
C、C.The JSP fails to execute.
D、D.<% int i = 12 %><b><%= i %></b>