Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

connect to html tags using CF

Status
Not open for further replies.

RosieGp

Programmer
Jun 23, 2009
83
0
0
US
Hi,
In my oracle database I have a column which contains html tags... How can I populate the html using coldfusion...
So in my Conn_Html table I have HTML_TXT column which has data something like the following:
server/test_html/txt/12345test.html...
Any help is appreciated...
 
ok, I'll try to explain a bit more...

In my data base I have link to a HTML page...

So I my oracle database I have a column which contains html links like (server/test_html/txt/12345test.html)...

With the following query:
<cfquery datasource="Oracle" name="Orcale Query">

Select HTML_TXT

From Conn_Html

</cfquery>
when I run this query My result shows the following:

server/test_html/txt/12345test.html

But i want to see what is contained in this html file... How can i populate what is in that html...

Thanks...
 
You can use <cfinclude>.

<cfinclude template="#HTML_TXT#">

Lyndon

---People Remember about 10% of what you say ---They never forget how you made them feel. Covey
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top