Writes an array of characters to an HTTP response output stream.
Assembly: System.Web (in System.Web.dll)
Syntax
Public Sub Write ( _
buffer As Char(), _
index As Integer, _
count As Integer _
)public void Write(
char[] buffer,
int index,
int count
)public:
void Write(
array<wchar_t>^ buffer,
int index,
int count
)member Write :
buffer:char[] *
index:int *
count:int -> unit
Parameters
- buffer
- Type:
array< 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.
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);
%>
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.