HtmlTextWriter.EndTagLeftChars Field

Definition

Represents the left angle bracket and slash mark (</) of the closing tag of a markup element.

C#
public const string EndTagLeftChars;

Field Value

Examples

The following code example shows how to render the closing tag of a <table> markup element by using the EndTagLeftChars and the TagRightChar fields as parameter values in calls to the Write method.

This code example renders the following markup:

</table>

C#
// Write the closing tag of a table element.
writer.Write(HtmlTextWriter.EndTagLeftChars);
writer.Write("table");
writer.Write(HtmlTextWriter.TagRightChar);
writer.WriteLine();

Remarks

The EndTagLeftChars field is used by the RenderBeginTag method to construct markup element end tags.

Applies to

Product Versions
.NET Framework 1.1, 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