Hi i , have a directroy search, that certain result will show Bolded (special customers) which works no problem, but what i'm trying to do is, have another alternative color or font size for more special customers,
but my cfif statememnt is not outputing the right result here is my codes ,, (i have a ms access database with 2 feilds each are yes/no data type , one is called "bold" and one called "more_bold"
------------------------------------------------------------
<cfif qItems.bold>
<td><a href="detail.cfm?ContactID=#ContactID#" ><font color="##FFF000" size="3"><strong>#CompanyName#</strong></font></a></td>
<cfelse>
<td><a href="detail.cfm?ContactID=#ContactID#" >#CompanyName#</a></td>
</cfif>
<cfif qItems.bold>
<td><a href="detail.cfm?ContactID=#ContactID#" ><font color="##FF0000" size="2"><strong>#CompanyName#</strong></font></a></td>
<cfelse>
<td><a href="detail.cfm?ContactID=#ContactID#" >#CompanyName#</a></td>
</cfif>
----------------------------------------------------------
I have a feeling i'm ending the cfif in the wrong place, or the table somehow is not right,
Thanks alot in adavnce
but my cfif statememnt is not outputing the right result here is my codes ,, (i have a ms access database with 2 feilds each are yes/no data type , one is called "bold" and one called "more_bold"
------------------------------------------------------------
<cfif qItems.bold>
<td><a href="detail.cfm?ContactID=#ContactID#" ><font color="##FFF000" size="3"><strong>#CompanyName#</strong></font></a></td>
<cfelse>
<td><a href="detail.cfm?ContactID=#ContactID#" >#CompanyName#</a></td>
</cfif>
<cfif qItems.bold>
<td><a href="detail.cfm?ContactID=#ContactID#" ><font color="##FF0000" size="2"><strong>#CompanyName#</strong></font></a></td>
<cfelse>
<td><a href="detail.cfm?ContactID=#ContactID#" >#CompanyName#</a></td>
</cfif>
----------------------------------------------------------
I have a feeling i'm ending the cfif in the wrong place, or the table somehow is not right,
Thanks alot in adavnce