Hello, I have the following code: <cfquery datasource="mydatabase" name="source"> SELECT SOURCE FROM TABLE </cfquery> <cfoutput query="source"> <p><em><a href="#source.SOURCE#">Source</a></em></p> </cfoutput> Code (markup): In the SOURCE field of my database, there's a web address (http://www.address.com). My problem is, when I click on it, it tries to find this website from within my website's directory... (http://www.mywebsite.com/http://www.address.com), which, is obviously incorrect. How can I have it avoid this? Thanks.
I took a look at my old Ms Access database to see what datatype I used. In the url column I set the datatype to hyperlink, I'm cant remember if I ran into this same problem back then or not, but check to see if yours is set to hyper link or not.
I checked the data type. It's currently "hyperlink". I think by the nature of my code (that I attribute the text as a hyperlink already) that if I change it in my database to TEXT or MEMO, it should work. Thanks