I was using this line on the popup code (ASP) on the old controls. Now its not working. I get a message telling me that CallBack is not defined. Is there another way to pass parameters to the callback function now ?
Code:
string myCallBackScript = "GetRadWindow().CallBack('" + myParametersString + "');";
this.ClientScript.RegisterClientScriptBlock(this.GetType(), "CallBackFunction", myCallBackScript, true);
Thanks.
Code:
string myCallBackScript = "GetRadWindow().CallBack('" + myParametersString + "');";
this.ClientScript.RegisterClientScriptBlock(this.GetType(), "CallBackFunction", myCallBackScript, true);
Thanks.