Hello,

With a Jsp file I create a csv file wich is downloaded to the client
side.

Here is the beginning of the jsp file :
   response.setContentType("application/vnd.excel");
   response.setHeader("Content-Disposition",
"attachement;filename=mesures.csv");
   out.println("BOF;");
After the data are created ....

When I control the result (mesures.csv) I find 8 empty line (one of then

contains just ">") before the texte "BOF".

Can anybody tell me who write these 8 lines or how to avoid them ?

Thanks for help.

Christophe Geraud

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to