well a few things here
my real job is in real estate so ia very comfy with the situation
u can also contact me off list if u want to and i will see what i can do

first thing is i would have a lil talk to the realtors about using those sites off the board or sites such as realtor.com. From personal experience thats about the worst thing they can do. Why? well, i can say that probably 99% of the ppl visiting their sites have already seen those properties on realtor.com amd seeing them again in the same format just makes the visitors go, next.... and they are gone. They wanna see something they havent seen before. its just like every realtor has too have all these damn links to schools and community and everything. Thats crazy! the ppl already know so why give them links to leave?

anyways, back to what u have
i'll look through some stuff and see if i have any tags for that, seems to me there are a lot and i think one of the devnets has something as well.

or u can probably do a cfhttp get the info parse it and insert

as far as the cfc goes, heres one right outta by cheapo realtor site

<cfcomponent>
   <cffunction name="getDetails" access="public" returntype="query" output="false" hint="chosen listings details">
     <cfset var qLD = "">
<!--- set site dsn connection --->
<cfset dsn = "yourdsn">
<cfset un = "yourun">
<cfset pw = "yourpw">
            <cfquery name="qLD" datasource="#dsn#" username="#un#" password="#pw#">
            SELECT *
            FROM listings
            WHERE listingID = <cfqueryparam value="#URL.listingID#" cfsqltype="cf_sql_integer">
            </cfquery>
            <cfreturn qLD>
   </cffunction>
</cfcomponent>





---------- Original Message ----------------------------------
From: Britta Bennett <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Date:  Thu, 07 Oct 2004 00:52:59 -0400

>Hi Dave,
>
>Just because that's what it's provided to me as on the remote page.
>Would the realty board have to reformat their information or provide it in a different format for me to access via CFC?  Are there any CFC's you might recomend for the job of parsing the info or setting it up on their side?
>
>Thanks so much..
>Britta
>
>
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Reply via email to