อ่านในภาษาอังกฤษ แก้ไข

แชร์ผ่าน


ControlAdapter.BeginRender(HtmlTextWriter) Method

Definition

Called prior to the rendering of a control. In a derived adapter class, generates opening tags that are required by a specific target but not needed by HTML browsers.

C#
protected internal virtual void BeginRender(System.Web.UI.HtmlTextWriter writer);

Parameters

writer
HtmlTextWriter

The HtmlTextWriter containing methods to render the target-specific output.

Remarks

The BeginRender method is called just before the Render method, and is used to perform target-specific preprocessing before the rendering of the control.

Use the BeginRender method in combination with the EndRender method to ensure opening and closing tag consistency.

Notes to Inheritors

When you inherit from the ControlAdapter class, the BeginRender(HtmlTextWriter) base method calls the BeginRender() method. Thus, overrides of the BeginRender(HtmlTextWriter) method should call the BeginRender(HtmlTextWriter) base method only if its processing is in addition to, rather than instead of, the BeginRender() method.

Applies to

ผลิตภัณฑ์ เวอร์ชัน
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also