Link to home
Start Free TrialLog in
Avatar of Rad1
Rad1

asked on

ColdFution Argument question

Hello,

1) Would anyone explain what arguments  in (arguments.account) means and how to use it?
2) How do variables are passed from a page to anothe in ColdFusion?

Thank you,
RS
SOLUTION
Avatar of gdemaria
gdemaria
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Rad1
Rad1

ASKER

Where does account come from in the helloworld('bob') ?

So if you called function   helloworld('bob')    then inside the function helloworld you would use  arguments.account to reference the variable passed to the function.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Rad1

ASKER

Thank you!