The following JSP scriptlet is given.
<% response.setContentType("text/html; charset=ISO-8859-1"); %>
Which of the following directives is the equivalent directive for the scriptlet given above?
<%@ include contentType="text/html; pageEncoding=ISO-8859-1" %>
<%@ include contentType="text/html; charset=ISO-8859-1" %>
<%@ page contentType="text/html; charset=ISO-8859-1" %>
<%@ taglib contentType="text/html; pageEncoding=ISO-8859-1" %>
Submit