Page.GetPostBackClientHyperlink Method
.NET Framework 2.0
NOTE: This method is now obsolete.
Gets a reference, with javascript: appended to the beginning of it, that can be used in a client event to post back to the server for the specified control and with the specified event arguments. Namespace: System.Web.UIAssembly: System.Web (in system.web.dll)
[ObsoleteAttribute(L"The recommended alternative is ClientScript.GetPostBackClientHyperlink. http://go.microsoft.com/fwlink/?linkid=14202")] public: String^ GetPostBackClientHyperlink ( Control^ control, String^ argument )
/** @attribute ObsoleteAttribute("The recommended alternative is ClientScript.GetPostBackClientHyperlink. http://go.microsoft.com/fwlink/?linkid=14202") */
public String GetPostBackClientHyperlink (
Control control,
String argument
)
ObsoleteAttribute("The recommended alternative is ClientScript.GetPostBackClientHyperlink. http://go.microsoft.com/fwlink/?linkid=14202") public function GetPostBackClientHyperlink ( control : Control, argument : String ) : String
Not applicable.
Parameters
- control
The server control to process the postback.
- argument
The parameter passed to the server control.
Return Value
A string representing a JavaScript call to the postback function that includes the target control's ID and event arguments.See the GetPostBackClientHyperlink method for an alternative to this deprecated member.
Community Additions
ADD
Show: