Obtains a reference to a client-side script function that causes, when invoked, a server postback to the form.
[Visual Basic]
Public Function GetPostBackClientEvent( _
ByVal control As Control, _
ByVal argument As String _
) As String
[C#]
public string GetPostBackClientEvent(
Control control,
string argument
);
[C++]
public: String* GetPostBackClientEvent(
Control* control,
String* argument
);
[JScript]
public function GetPostBackClientEvent(
control : Control,
argument : String
) : String;
Parameters
- control
- The server control that receives the client event postback.
- argument
- A String argument that is passed to the IPostBackEventHandler.RaisePostBackEvent method.
Return Value
The String that represents the client event.
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
Page Class | Page Members | System.Web.UI Namespace