[thelist] JSP Help

Chris Johnston fuzzylizard at gmail.com
Tue Feb 1 08:49:19 CST 2005


On Tue, 1 Feb 2005 09:00:02 -0500, RUST Randal <RRust at covansys.com> wrote:
> I don't know JSP, but can't this block...
> 
>                         buf.append("<tr>")
>                         buf.append("<table border=1 cellspacing=0>")
>                         buf.append("<thead>")
>                         buf.append("<tr>")
>                         buf.append("<th>Check Number</th>");
>                         buf.append("<th>Payment Date</th>");
>                         buf.append("<th>Check Amount</th>");
>                         buf.append("<th>Payment Type</th>");
>                         buf.append("<th>Status</th>");
>                         buf.append("<th>In Letter</th>");
>                         buf.append("<th>Check Details</th>");
>                         buf.append("</thead>")
>                         buf.append("</tr>")
> 
> ...be written as...
> 
>                         buf.append("
>                         <tr>
>                         <table border=1 cellspacing=0>
>                         <thead>
>                         <tr>
>                         <th>Check Number</th>
>                         <th>Payment Date</th>
>                         <th>Check Amount</th>
>                         <th>Payment Type</th>
>                         <th>Status</th>
>                         <th>In Letter</th>
>                         <th>Check Details</th>
>                         </thead>
>                         </tr>
>                         ")
> 

Yes, although I am not sure how the added white space may translate to
the final html page.

-- 
chris johnston

www.fuzzylizard.com

"For millions of years, mankind lived just like the animals and
something happened which unleashed the power of our imagination, we
learned to talk."
Pink Floyd


More information about the thelist mailing list