Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HtmlTextWriter::OnTagRender Method (String^, HtmlTextWriterTag)

 

Determines whether the specified markup element will be rendered to the requesting page.

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)

protected:
virtual bool OnTagRender(
	String^ name,
	HtmlTextWriterTag key
)

Parameters

name
Type: System::String^

A string containing the name of the element to render.

key
Type: System.Web.UI::HtmlTextWriterTag

The HtmlTextWriterTag associated with the element.

Return Value

Type: System::Boolean

Always true.

The HtmlTextWriter class implementation of the OnTagRender method always returns true. The OnTagRender overrides can determine whether an element will be rendered to the page.

Notes to Inheritors:

If you inherit from the HtmlTextWriter class, you can override the OnTagRender method to return false to prevent a markup element from being rendered at all or for a particular markup language. For example, if you do not want the object that is derived from HtmlTextWriter to render the <font> element, you can override the OnTagRender method to return false when a page is requested that contains a <font> element.

The following code example shows how to override the OnTagRender method. If a Font element is being rendered, the OnTagRender override uses the IsAttributeDefined method to determine whether a Size attribute is being rendered. If not, it uses the AddAttribute method to create a Size attribute and set its value to 20pt.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft