[thelist] JSP Help

RUST Randal RRust at COVANSYS.com
Tue Feb 1 08:00:02 CST 2005


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>
			")

TIA.

----------
Randal Rust
Covansys Corporation
Columbus, OH 
Confidentiality Statement:

This message is intended only for the individual or entity to which it is addressed. It may contain privileged, confidential information which is exempt from disclosure under applicable laws. If you are not the intended recipient, please note that you are strictly prohibited from disseminating or distributing this information (other than to the intended recipient) or copying this information. If you have received this communication in error, please notify us immediately by return email.



More information about the thelist mailing list