> I have a quick COM/cfobject question that I hope someone 
> could help me with. I am trying to impliment the following 
> function:
> 
> s.ClientProperty("ServerHTTPRequest") = true;
> 
> But CF (4.5) is complaining about the left hand operand 
> being a function. Is there any other way that I can perform 
> this assignment?

These are just shots in the dark. Try any, and see if they work:

<cfset s.ClientProperty.ServerHTTPRequest = true>
<cfset "#s.ClientProperty("ServerHTTPRequest")#" = true>
<cfset s.ClientProperty["ServerHTTPRequest"] = true>

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

                                Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
                                

Reply via email to