Hi, I have this piece of code in my JSP which writes to a client machine as a .csv file.
response.setContentType("text/x-csv; charset=ISO-8859-1"); response.setHeader("Content-Disposition", "inline; filename=\"" + fn + "\""); out.print("Got this written on the client machine."); The problem I have in this is, it starts writing in the cvs file from row number 38 onwards and not from row 1 itself. How do I get it write from row 1 in the csv file. Any pointers to this are highly appreciated. Sorry for posting this on tomcat users group as it is irrelevant in this place. TIA ~Santosh __________________________________________________ Do you Yahoo!? Faith Hill - Exclusive Performances, Videos & More http://faith.yahoo.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>