Skip to main content
Participating Frequently
August 24, 2015
Question

coldfusion

  • August 24, 2015
  • 1 reply
  • 258 views

  I am new to coldfusion can someone clear my doubt please.I have a function Test_Func. I want to assign the parameter(input) value to a variable myname).Kindly help

function  Test_Func(input)

{


<cfset var myname= " ">

}

    This topic has been closed for replies.

    1 reply

    Dave Ferguson
    Participating Frequently
    August 24, 2015

    You are trying to combine script and tag based syntax.  This will not work.  Below would be the proper syntax based on your code. 

    function  Test_Func(input)

    {

    var myname= arguments.input;

    }

    You might want to take a look at Learn CF in a Week‌ .  That should get you on the right track to what you are trying to do.