HtmlTextWriter.HtmlTextWriter(TextWriter, String) Constructor
.NET Framework 3.0
Initializes a new instance of the HtmlTextWriter class with a specified tab string character.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public HtmlTextWriter ( TextWriter writer, String tabString )
public function HtmlTextWriter ( writer : TextWriter, tabString : String )
Not applicable.
Parameters
- writer
The TextWriter that renders the markup content.
- tabString
The string to use to render a line indentation.
The following code example demonstrates how to use the HtmlTextWriter(TextWriter) constructor to create a custom HtmlTextWriter object named StyledLabelHtmlWriter. When the MyPage custom class, which is derived from the Page class, is requested by a client browser, it uses the StyledLabelHtmlWriter class to render its content to the output stream.
// A custom class that overrides its CreateHtmlTextWriter method. // This page uses the StyledLabelHtmlWriter class to render its content. public ref class MyPage: public Page { protected: virtual HtmlTextWriter^ CreateHtmlTextWriter( TextWriter^ writer ) override { return gcnew HtmlStyledLabelWriter( writer ); } };
// A custom class that overrides its CreateHtmlTextWriter method.
// This page uses the HtmlStyledLabelWriter class to render its content.
public class MyPage extends Page
{
protected HtmlTextWriter CreateHtmlTextWriter(TextWriter writer)
{
return new HtmlStyledLabelWriter(writer);
} //CreateHtmlTextWriter
} //MyPage
Community Additions
ADD
Show: