HtmlTextWriter.Write Method (String, Object, Object)
.NET Framework 3.0
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)
Assembly: System.Web (in system.web.dll)
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();