HtmlTextWriter.Write Method (String)
.NET Framework 2.0
Writes the specified string to the output stream, along with any pending tab spacing.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following code example demonstrates how to use the Write method to render a string between the opening and closing tags of a custom markup element.
This code example generates the following markup:
<MyTag>
Contents of MyTag
</MyTag>
// Create a non-standard tag. writer->RenderBeginTag( "MyTag" ); writer->Write( "Contents of MyTag" ); writer->RenderEndTag(); writer->WriteLine();
// Create a non-standard tag.
writer.RenderBeginTag("Mytag");
writer.Write("Contents of MyTag");
writer.RenderEndTag();
writer.WriteLine();
Community Additions
ADD
Show: