Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cold Fusion case sensitive variable problem

Status
Not open for further replies.

FALCONSEYE

Programmer
Jul 30, 2004
1,158
US
ok, here is what i have

<cfscript>
myrecord = StructNew();
myrecord.method = request.method;
myrecord.salesorder_id = request.salesorder_id;
</cfscript>

then i call a webservice and pass myrecord struct.
however, the web service expects method and salesorder_id to be lower case. of course, cold fusion converts my variable names to upper case. is there a way to make cold fusion variable names to not be uppercase?
for instance can i do something like

firstName,
firstname,
fIrstname ?

thanks for the help in advance...

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top