Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Generating HTML
Message
 
 
To
01/10/2000 00:23:37
General information
Forum:
Visual FoxPro
Category:
Internet applications
Title:
Miscellaneous
Thread ID:
00423107
Message ID:
00423267
Views:
11
David,

>Sounds like TEXTMERGE is what you want for a page that pulls data from just one record in a table, like a product information page.

TEXTMERGE can just as easily build an HTML table as a string concatenation, easier in fact because no TRANSFORM is needed.

\<table border=0 cellpadding=5>
n = afields( laJunk )
scan
scatter to x1
\<tr>
for i = 1 to n
lcX = x1[i]
if ( empty( lcX ) )
lcX = " "
endif
\\<td><<lcX>></td>
endfor
\\</tr>
endscan

\</table>
df (was a 10 time MVP)

df FoxPro website
FoxPro Wiki site online, editable knowledgebase
Previous
Reply
Map
View

Click here to load this message in the networking platform