HttpResponse.Write Method (Char)
.NET Framework (current version)
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.
<% 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) %>
.NET Framework
Available since 1.1
Available since 1.1
Show: