HttpResponse.Write Method (Char[], Int32, Int32)
.NET Framework 3.0
Writes an array of characters to an HTTP response output stream.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public void Write ( char[] buffer, int index, int count )
public function Write ( buffer : char[], index : int, count : int )
Not applicable.
Parameters
- buffer
The character array to write.
- index
The position in the character array where writing starts.
- count
The number of characters to write, beginning at index.
The following code 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);
%>