HtmlTextWriter.EqualsDoubleQuoteString Field

Definition

Represents an equal sign (=) and a double quotation mark (") together in a string (=").

C#
public const string EqualsDoubleQuoteString;

Field Value

Examples

The following code example shows how to render a border attribute for a <table> element. The code calls the Write method to render the attribute and its value and uses the Write method to render the EqualsDoubleQuoteString and DoubleQuoteChar fields.

This code example renders the following markup:

border="1"

C#
// Create a border attribute for the table,
// and set it to 1.
writer.Write("border");
writer.Write(HtmlTextWriter.EqualsDoubleQuoteString);
writer.Write("1");
writer.Write(HtmlTextWriter.DoubleQuoteChar);

Remarks

The EqualsDoubleQuoteString field is used by the RenderBeginTag and WriteAttribute methods to construct the opening delimiter of attribute values.

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