Creating an html file programatically

  • Thread starter Thread starter Jon B
  • Start date Start date
J

Jon B

I have a database of customer records, and need to create an index.html file
for each. The html page is fairly basic, I just need to insert some fields
specific to each record. (e.g. Customer name, links to folder etc)

Which is the best way to do this? Can I start with a text file and add
appropriate code at certain points?

Thanks in advance!
 
In Jon B typed:
I have a database of customer records, and need to create
an
index.html file for each. The html page is fairly basic,
I just need
to insert some fields specific to each record. (e.g.
Customer name,
links to folder etc)

Which is the best way to do this? Can I start with a text
file and add
appropriate code at certain points?

Thanks in advance!

That's the way I go about it.
Set up the path and filename for your target file then write
the html header and stuff as text, then write your fields as
text and then html closures.


--
Nick Coe (UK)
AccHelp v1.01 Access Application Help File Builder
http://www.alphacos.co.uk/
Download Free Copy
----
 
Nick Coe (UK) said:
In Jon B typed:

That's the way I go about it.
Set up the path and filename for your target file then write
the html header and stuff as text, then write your fields as
text and then html closures.

That worked perfectly!
 
Back
Top