Page.GetPostBackClientEvent(Control, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
The recommended alternative is ClientScript.GetPostBackEventReference. http://go.microsoft.com/fwlink/?linkid=14202
Gets a reference that can be used in a client event to post back to the server for the specified control and with the specified event arguments.
public:
System::String ^ GetPostBackClientEvent(System::Web::UI::Control ^ control, System::String ^ argument);
public string GetPostBackClientEvent (System.Web.UI.Control control, string argument);
[System.Obsolete("The recommended alternative is ClientScript.GetPostBackEventReference. http://go.microsoft.com/fwlink/?linkid=14202")]
public string GetPostBackClientEvent (System.Web.UI.Control control, string argument);
member this.GetPostBackClientEvent : System.Web.UI.Control * string -> string
[<System.Obsolete("The recommended alternative is ClientScript.GetPostBackEventReference. http://go.microsoft.com/fwlink/?linkid=14202")>]
member this.GetPostBackClientEvent : System.Web.UI.Control * string -> string
Public Function GetPostBackClientEvent (control As Control, argument As String) As String
Parameters
- control
- Control
The server control that receives the client event postback.
- argument
- String
A String that is passed to RaisePostBackEvent(String).
Returns
The string that represents the client event.
- Attributes
Remarks
See the ClientScriptManager class for alternatives to this deprecated member.