Ask a Question related to Macromedia ColdFusion, Design and Development.
-
bdee2 #1
Generating HTML pages
how would i go about creating a CFML template to loop through a list and create an HTML file for each item inthe list? is this possible with CF?
bdee2 Guest
-
Generating html pages from a database.
A few years ago I ran across a behavior for Ultradev that would insert a recordset into your html documents. This made it possible to make a catalog... -
building HTML pages from CFM pages
Does CF have a function that could be used to build static pages from dynamic pages? I realize I could just save the HTML that it outputs as an... -
Importing textfile generating multiple PDF pages
I have a problem! Would like to extract information from another program to a textfile and then import this to Acrobat generating multiple PDF... -
I need help generating an image alongside other html
I have been searching various boards trying to figure out how to generate an image along with other html. I intend to put the image in a table, but... -
I need help generating an image along with other html
I have been searching various boards trying to figure out how to generate an image along with other html. I intend to put the image in a table, but... -
mpwoodward *TMM* #2
Re: Generating HTML pages
On 2005-06-21 08:07:06 -0500, "bdee2" <webforumsuser@macromedia.com> said:
Not sure exaclty what you're trying to do, but you could easily use> how would i go about creating a CFML template to loop through a list
> and create an HTML file for each item inthe list? is this possible
> with CF?
cffile to write out html files.
Matt
--
Matt Woodward
[email]mpwoodward@gmail.com[/email]
Team Macromedia - ColdFusion
mpwoodward *TMM* Guest
-
bdee2 #3
Re: Generating HTML pages
just experimenting really. so if i wanted to have a template that woudl create
an hatml file called myfile.html in the same folder as the template with the
following contents how would i do that?
<html>
<head><title>My Page</title></head>
<body>hello World</body>
</html>
bdee2 Guest
-
Syncopation #4
Re: Generating HTML pages
<cfset information = '<html>
<head><title>My Page</title></head>
<body>hello World</body>
</html> '>
<cffile action="write" file="myfile.html" output="#information#">
get more information on the cffile tag
[url]http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-p27.htm[/url]
Syncopation Guest
-



Reply With Quote

