Skip to main content
.NET Framework Class Library
HttpResponse..::.Write Method (Char)

Writes a character to an HTTP response output stream.

Namespace: System.Web
Assembly: System.Web (in System.Web.dll)
Syntax
Public Sub Write ( _
	ch As Char _
)
public void Write(
	char ch
)
public:
void Write(
	wchar_t ch
)
member Write : 
        ch:char -> unit 

Parameters

ch
Type: System..::.Char
The character to write to the HTTP output stream.
Examples

The following example creates a series of constants that are written to an ASP.NET page using the Write method. The code calls this version of the Write method to write individual character constants to the page.


      <%
         Dim charArray As Char() = {"H"c, "e"c, "l"c, "l"c, "o"c, ","c, " "c, _
                                 "w"c, "o"c, "r"c, "l"c, "d"c}
         ' Write a character array to the client.
         Response.Write(charArray, 0, charArray.Length)

         ' Write a single character.
         Response.Write(";"c)

         ' Write a sub-section of a character array to the client.
         Response.Write(charArray, 0, 5)
         ' Write an object to the client.
         Dim obj As Object
         obj = CType(13, Object)
         Response.Write(obj)
      %>



<%

    // Create a character array.
char[] charArray = {'H', 'e', 'l', 'l', 'o', ',', ' ', 
                       'w', 'o', 'r', 'l', 'd'};

    // Write a character array to the client.
    Response.Write(charArray, 0, charArray.Length);

    // Write a single characher.
    Response.Write(';');

    // Write a sub-section of a character array to the client.
    Response.Write(charArray, 0, 5);
    // Write an object to the client.
    object obj = (object)13;
    Response.Write(obj);

%>

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.