Ask a Question related to Coldfusion Database Access, Design and Development.
-
prpldude #1
retrieving Hyperlink in Access
I am new to CF and databases, so this question is probably a no brainer for
most of you. I am trying to retrieve a hyperlink from my access database and
when I view the .cfm file in my broweser the output shows
922#[url]http://www.pinnaclespokane.com#[/url]. Is this a CF issue or Access, and does
anyone know what I'm doing wrong or how to fix it?
here is the code
<cfquery datasource="listingstest" name="listing">
SELECT LISTNUM, PROPERTY, LANDSF, BLDGSF, PRICE, DOLLPERSF, AGENT, URL
FROM LISTINGS
</cfquery>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>LIST#</TITLE>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2900.2627" name=GENERATOR></HEAD>
<BODY lang=EN-US vLink=#800080 link=#0000ff bgColor=#ffef00>
<TABLE cellSpacing=0 cellPadding=0 width=500 border=1>
<TBODY>
<TR>
<TD width=500>
<TABLE cellSpacing=0 cellPadding=0 border=1>
<TBODY>
<TR>
<TD width=50> <P style="TEXT-ALIGN: center"
align=center><B>LIST#</B></P></TD>
<TD width=237> <P style="TEXT-ALIGN: center"
align=center><B>PROPERTY</B></P></TD>
<TD width=56> <P style="TEXT-ALIGN: center"
align=center><B>LAND<BR>
SQFT</B></P></TD>
<TD width=56> <P style="TEXT-ALIGN: center"
align=center><B>BLDG<BR>
SQFT</B></P></TD>
<TD width="91"> <P style="TEXT-ALIGN: center"
align=center><B>PRICE</B></P></TD>
<TD width=51> <P style="TEXT-ALIGN: center"
align=center><B>$/SF</B></P></TD>
<TD width="63"> <P style="TEXT-ALIGN: center"
align=center><B>AGENT</B></P></TD>
</TR>
<cfoutput query="listing">
<TR>
<TD>#LISTING.LISTNUM#</TD>
<TD width=237>#LISTING.PROPERTY#</TD>
<TD align=middle width=56>#LISTING.LANDSF#</TD>
<TD align=middle width=56>#LISTING.BLDGSF#</TD>
<TD align=right>#LISTING.PRICE#</TD>
<TD align=right width=51>#LISTING.DOLLPERSF#</TD>
<TD align=center>#LISTING.AGENT#</TD>
<TD align=center>#LISTING.URL#</TD>
</TR>
</cfoutput>
</TBODY>
</TABLE></TD></TR>
</TBODY></TABLE></BODY></HTML>
prpldude Guest
-
Problem in Retrieving Images From MS Access Database
I'm trying to set-up an online catalogue of products that can be searched. I have achieved this with text, so I can get results from my search.... -
Sending & retrieving data from Access
I've read a post from this forum about sending and retrieving data using ASP and I think I understand it. The question I have is with regards to... -
Calculations and Retrieving Variables From Access via CF
HELP!!! i am trying to retrieve information from an access module via CF. I am using MSACCESS and have written a script to calculate a percentage of... -
Storing and Retrieving Info in Access
I'm not sure if this is even the best place to ask this question, but here goes: my site is hosted by a third party on a Win2K platform and there... -
Retrieving Hyperlink parameter values in PHP
I have a PHP program that creates a page with several links all to the same URL but with different parameter values in the hyperlink e.g. <a...



Reply With Quote

