PageAdapter.RenderPostBackEvent Method (HtmlTextWriter, String, String, String, String)
.NET Framework 3.0
Renders a postback event into the response stream as a hyperlink, including the encoded and possibly encrypted view state, and event target and argument.
Namespace: System.Web.UI.Adapters
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual void RenderPostBackEvent ( HtmlTextWriter^ writer, String^ target, String^ argument, String^ softkeyLabel, String^ text )
public void RenderPostBackEvent ( HtmlTextWriter writer, String target, String argument, String softkeyLabel, String text )
public function RenderPostBackEvent ( writer : HtmlTextWriter, target : String, argument : String, softkeyLabel : String, text : String )
Not applicable.
Parameters
- writer
The HtmlTextWriter containing methods to render the target-specific output.
- target
The String value holding the postback event target name.
- argument
The String value holding the argument to pass to the postback target event.
- softkeyLabel
The String value to use as a soft key label.
- text
The String value of the text to display as the link.
The RenderPostBackEvent method writes a postback event as a scriptless hyperlink.
Notes to Inheritors: When you inherit from the PageAdapter class, you can override the RenderPostBackEvent method if a different format is required for the postback event hyperlink or the browser has other unique requirements. For example, some browsers require the hyperlink text to be nonempty if the link is to render. You can also override RenderPostBackEvent if limited resources prevent including the view state as a URL parameter. The RenderPostBackEvent base method does not write an attribute for softkeyLabel.Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: