HtmlTextWriter.EqualsDoubleQuoteString Field
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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)
The EqualsDoubleQuoteString field is used by the RenderBeginTag and WriteAttribute methods to construct the opening delimiter of attribute values.
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 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: