HtmlTextWriter.Write Method (String, Object, Object) (System.Web.UI)

Switch View :
ScriptFree
.NET Framework Class Library
HtmlTextWriter.Write Method (String, Object, Object)

Writes a formatted string that contains the text representation of two objects to the output stream, along with any pending tab spacing. This method uses the same semantics as the String.Format method.

Namespace:  System.Web.UI
Assembly:  System.Web (in System.Web.dll)
Syntax

Visual Basic
Public Overrides Sub Write ( _
	format As String, _
	arg0 As Object, _
	arg1 As Object _
)
C#
public override void Write(
	string format,
	Object arg0,
	Object arg1
)
Visual C++
public:
virtual void Write(
	String^ format, 
	Object^ arg0, 
	Object^ arg1
) override
F#
abstract Write : 
        format:string * 
        arg0:Object * 
        arg1:Object -> unit 
override Write : 
        format:string * 
        arg0:Object * 
        arg1:Object -> unit 

Parameters

format
Type: System.String
A string that contains zero or more format items.
arg0
Type: System.Object
An object to format.
arg1
Type: System.Object
An object to format.
Remarks

The Write method generates any tabs that are pending, and then calls the Write base method.

Examples

The following code example shows how to use the Write method to render a formatted string and the values of the CurrentCulture and Today properties.

Visual Basic

' Use the Write(string,object,object) method to
' render a formatted string and two objects 
' in the string.
writer.RenderBeginTag(HtmlTextWriterTag.Label)
writer.Write("The current cultural settings are {0}. Today's date is {1}.", _
    CultureInfo.CurrentCulture, DateTime.Today)
writer.RenderEndTag()


C#

// Use the Write(string,object,object) method to
// render a formatted string and two objects 
// in the string.
writer.RenderBeginTag(HtmlTextWriterTag.Label);
writer.Write("The current cultural settings are {0}. Today's date is {1}.",
    CultureInfo.CurrentCulture, DateTime.Today);
writer.RenderEndTag();


Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference