Can anybody see an issue with the following CFScript?  I have confirmed
that the if clauses turn true at the appropriate times, but for some
reason the strings are not being modified when they are.

 

<cfoutput query="Shipped">

            <cfscript>

                        line = "";//init

                        if (left(UnitNo,5) EQ "W0358")

                        {

                                    UnitNo = "=" & UnitNo & "00";

                        }

                        line = line & UnitNo & ", ";//BloodID

 

                        if (left(Component,1) EQ "E")

                        {

                                    Component = "=<" & Component & "00";

                        }

                        else

                        {

                                    Component = "0" & Component;

                        }

                        line = line & Component & ", ";//ProductCode

....

</cfscript>

</cfoutput>


Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message.



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278338
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to