ICallbackContainer.GetCallbackScript Method
.NET Framework 3.0
Creates a script for initiating a client callback to a Web server.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
String GetCallbackScript ( IButtonControl buttonControl, String argument )
function GetCallbackScript (
buttonControl : IButtonControl,
argument : String
) : String
Not applicable.
Parameters
- buttonControl
The control initiating the callback request.
- argument
The arguments used to build the callback script.
Return Value
A script that, when run on a client, will initiate a callback to the Web server.Implementations of the GetCallbackScript method should return a script that, when run on the client, will initiate a callback to the Web server.
The argument parameter is passed to the RaiseCallbackEvent method that handles the callback.
For more information on creating callbacks, see Client Callbacks Without Postbacks in ASP.NET Pages.
Community Additions
ADD
Show: