JavaScript function:
function WelcomeMessageMaster(clientID) {
alert("ClientID = " + clientID);
}
C# code:
clientStageCommand = new ClientStepCommand
{
CommandType = ClientStageCommandType.Eval,
Argument = "WelcomeMessageMaster"/("/" + this.Grid.UniqueID + ""/)""
};
But, there's compiler error that says something's wrong with brackets. I'm not sure where to put quotation marks.