DetailsView.ICallbackContainer.GetCallbackScript Method

Definition

Creates the callback script for the DetailsView control.

 virtual System::String ^ System.Web.UI.WebControls.ICallbackContainer.GetCallbackScript(System::Web::UI::WebControls::IButtonControl ^ buttonControl, System::String ^ argument) = System::Web::UI::WebControls::ICallbackContainer::GetCallbackScript;
string ICallbackContainer.GetCallbackScript (System.Web.UI.WebControls.IButtonControl buttonControl, string argument);
abstract member System.Web.UI.WebControls.ICallbackContainer.GetCallbackScript : System.Web.UI.WebControls.IButtonControl * string -> string
override this.System.Web.UI.WebControls.ICallbackContainer.GetCallbackScript : System.Web.UI.WebControls.IButtonControl * string -> string
Function GetCallbackScript (buttonControl As IButtonControl, argument As String) As String Implements ICallbackContainer.GetCallbackScript

Parameters

buttonControl
IButtonControl

The button control that posted the page back to the server.

argument
String

The argument for the callback event.

Returns

The callback script for the DetailsView control.

Implements

Remarks

This method is a helper method that is called by the DetailsView control to generate its callback script. If the DetailsView control does not render client script, or if the argument parameter is null or an empty string (""), this method returns null.

Applies to

See also