HtmlTextWriter.SpaceChar Field
.NET Framework 3.0
Represents a space ( ) character.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The SpaceChar field is used by the RenderBeginTag and WriteAttribute methods when writing separators between elements and attributes.
This section provides two code examples. The first one demonstrates how to create a character array. The second one demonstrates how to use the array.
These code examples generate the following markup:
<label>
hello world
</label>
The following code example shows how to create a Char array that contains the SpaceChar field.
The following code example shows how to use the array that was created in the preceding code example as a parameter when calling the Write method.
Community Additions
ADD
Show: