HttpResponse.Write Method (Char(), Int32, Int32)
.NET Framework (current version)
Writes an array of characters to an HTTP response output stream.
Assembly: System.Web (in System.Web.dll)
Parameters
- buffer
-
Type:
System.Char()
The character array to write.
- index
-
Type:
System.Int32
The position in the character array where writing starts.
- count
-
Type:
System.Int32
The number of characters to write, beginning at index.
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: