That lines are created by your jsp.
Every linfeed outside of the jsp tags is 
reproduced in the output of the page.

If you have the following:

<%! 
  // some code 
%>
<jsp:useBean ... />
<jsp:useBean ... />
<% 
  // some code 
%>

There is one linefeed between each tag,
if you want to avoid that, you have to use 
something like that:

<%! 
  // some code
%><jsp:useBean ... 
/><jsp:useBean ... 
/><% 
  // some code 
%>

> -----Original Message-----
> From: Philippe Burger [mailto:pburger@;zapata.fr]
> Sent: Thursday, October 31, 2002 9:50 AM
> To: [EMAIL PROTECTED]
> Subject: JSP blank lines !?
> 
> 
> When JSP pages are sent to the web client, they include 
> several blank lines at the begining of the file. They are 
> generated during the compilation ofthe JSP, why?
> What can I do to delete this lines? 

--
To unsubscribe, e-mail:   <mailto:tomcat-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org>

Reply via email to