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...
<a href="#OracleQuery.htmlText#">Oracle Link</a>
OR
<cffile action="read" file="#expandPath(OracleQuery.htmlText#" variable="fileData">
<cfoutput>#fileData#<cfoutput>
OR
<cfcontent type="text/html" file="#expandPath(OracleQuery.htmlText)#">
Are three possible ways I could think of accessing a file from a link stored in a database table retreived with a <cfquery...> tag.
P.S. Note I did not check my syntax and I don't use some of these tags on a daily bases, so I may have missnamed a parameter here or there. Look them up in the documentation.