Comparing Apples and Oranges
<%
String format = request.getParameter("format");
if ((format != null) && (format.equals("excel"))) {
response.setContentType("application/vnd.ms-excel");
}
%>
| Apples | Oranges
|
|---|
| First Quarter | 2307 | 4706
|
|---|
| Second Quarter | 2982 | 5104
|
|---|
| Third Quarter | 3011 | 5220
|
|---|
| Fourth Quarter | 3055 | 5287
|
|---|