HtmlTextWriter.Write Method (String, Object, Object)
.NET Framework (current version)
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.
Assembly: System.Web (in System.Web.dll)
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.
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.
// 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();
.NET Framework
Available since 1.1
Available since 1.1
Show: