RE: Parsing a text field from a db...

2001-03-21 Thread Tristram Charnley
uot; Homer Simpson. -Original Message- From: Christian N. Abad [mailto:[EMAIL PROTECTED]] Sent: 19 March 2001 19:57 To: CF-Talk Subject: Parsing a text field from a db... Folks: Here is today's challenge : I have a database that stores Library articles (how-to's). I need

Parsing a text field from a db...

2001-03-19 Thread Christian N. Abad
Folks: Here is today's challenge : I have a database that stores Library articles (how-to's). I need to be able to store ColdFusion markup in the database and have it parsed once the row is retrieved from the database. For example, I store the following text in the db: img

Re: Parsing a text field from a db...

2001-03-19 Thread Kevin Gilchrist
You could try dumping the text from the database into an ASCII text file, e.g. temp.cfm, and then cfinclude that file. "Christian N. Abad" [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... Folks: Here is today's challenge : I have a database that stores Library articles

Re: Parsing a text field from a db...

2001-03-19 Thread Olivier Gostan
have you tryed : cfoutput#Evaluate(myQueryName.article)#/cfoutput O- - Original Message - From: "Christian N. Abad" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, March 19, 2001 2:56 PM Subject: Parsing a text field from a db... Folks: Here

RE: Parsing a text field from a db...

2001-03-19 Thread Bryan Love
Application Developer [EMAIL PROTECTED] -Original Message- From: Christian N. Abad [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 11:57 AM To: CF-Talk Subject: Parsing a text field from a db... Folks: Here is today's challenge : I

RE: Parsing a text field from a db...

2001-03-19 Thread Hayes, David
Check the evaluate function. #evaluate(myQueryName.article)# You'll need to replace the single # with double ## before evaluating it. -Original Message- From: Christian N. Abad [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 1:57 PM To: CF-Talk Subject: Parsing a text field

Re: Parsing a text field from a db...

2001-03-19 Thread nagesh
- Original Message - From: "Christian N. Abad" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, March 19, 2001 2:56 PM Subject: Parsing a text field from a db... Folks: Here is today's challenge : I have a database that stores Library articles

RE: Parsing a text field from a db...

2001-03-19 Thread Christian N. Abad
Yep. No luck there... Regards, CNA -Original Message- From: Olivier Gostan [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 3:24 PM To: CF-Talk Subject: Re: Parsing a text field from a db... have you tryed : cfoutput#Evaluate(myQueryName.article)#/cfoutput O- - Original