[thelist] JSP Help

Jay Blanchard jay.blanchard at niicommunications.com
Tue Feb 1 08:09:20 CST 2005


[snip]
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>
			")

[/snip]

Have you tried it?


More information about the thelist mailing list