Well, I have this script that generates the table, something like this
<% Begin Script % >
<table>
Price <%=price%>
Amount <%=amount%>
</table>
<% Move Next %>
How do I get this HTML that is being generated into that "OrderContent" ????
Thanks in advance y'all,
Thomas
* Sent via Developersdex.com http://www.developersdex.com *
The Web Developers Index
Then, response.write the whole thing at once.
Thomas J.C. wrote in message ...
It would be easy if there was only one product in the order content, but there can be many more.
It looks like you're starting a new table each time through the loop.
Probably don't want to do that.
Thomas J.C. wrote in message ...