HttpResponse.Write Method (Char)
.NET Framework (current version)
![]() |
---|
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience. |
Writes a character to an HTTP response output stream.
Assembly: System.Web (in System.Web.dll)
Parameters
- ch
-
Type:
System.Char
The character to write to the HTTP output stream.
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.
<% // 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); %>
.NET Framework
Available since 1.1
Available since 1.1
Show: