RE: Syntax and Performance

2001-01-23 Thread horn_ken
:31:49 Please respond to [EMAIL PROTECTED]; Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc:(bcc: Ken X Horn) Subject: RE: Syntax and Performance I think it will generate a out.print("\n"); that is unecesary. Why don't you look at the generated code? Bye,

RE: Syntax and Performance

2001-01-22 Thread cga
I think it will generate a out.print("\n"); that is unecesary. Why don't you look at the generated code?   Bye,   Gaston     - Original Message - From: Hobson, Don To: '[EMAIL PROTECTED]' Sent: Monday, January 22, 2001 2:36 PM Subjec

Syntax and Performance

2001-01-22 Thread Hobson, Don
 Is there any reason that I should not do this:  <%! String hostname;%><%  hostname    = request.getParameter("Host"); %>  Does the compiler have to do any extra work? Should I combine them?