HtmlTextWriter.EqualsDoubleQuoteString Field

Definition

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

public: System::String ^ EqualsDoubleQuoteString;
public const string EqualsDoubleQuoteString;
val mutable EqualsDoubleQuoteString : string
Public Const EqualsDoubleQuoteString As String 

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"

// 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);
' 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

See also