Hi,
I am running the following if statement
It always returns isactive as 0.
I ran this right after the cfset noted above:
It returns: Status: A - Active Flag: 0 - Dealer ID: 028400
Any idea why when the status is obviously A, it returns 0?
I am running the following if statement
Code:
<cfif getdealerupdates.dealerstatus IS "A"><cfset isactive = "1"><cfelse><cfset isactive = "0"></cfif>
It always returns isactive as 0.
I ran this right after the cfset noted above:
Code:
<cfoutput>Status: #getdealerupdates.dealerstatus# - Active Flag: #isactive# - Dealer ID: #getdealerupdates.dealernumber#</cfoutput><cfabort>
Any idea why when the status is obviously A, it returns 0?