The contentType Attribute
Format
<%@ page contentType="MIME Type" %>
<%@ page contentType="MIME Type;
charset=Character Set"%>
Purpose
Specify the MIME type of the page generated by the
servlet that results from the JSP page
41
JSP
www.corewebprogramming.com
Generating Excel Spreadsheets
First Last Email Address
Marty Hall hall@corewebprogramming.com
Larry Brown brown@corewebprogramming.com
Bill Gates gates@sun.com
Larry Ellison ellison@microsoft.com
<%@ page contentType="application/vnd.ms excel" %>
<% There are tabs, not spaces, between columns. %>
42
JSP
www.corewebprogramming.com
21