Page.Buffer Property
.NET Framework 2.0
This property supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Sets a value indicating whether the page output is buffered.
Namespace: System.Web.UIAssembly: System.Web (in system.web.dll)
'Declaration Public Property Buffer As Boolean 'Usage Dim instance As Page Dim value As Boolean value = instance.Buffer instance.Buffer = value
/** @property */ public boolean get_Buffer () /** @property */ public void set_Buffer (boolean value)
public function get Buffer () : boolean public function set Buffer (value : boolean)
Not applicable.
Property Value
true if page output is buffered; otherwise, false. The default is true.In most circumstances, do not set this property in code. Set the Buffer attribute to true using the @ Page directive in the .aspx file. When the page is requested, the dynamically generated class sets the property.
Note: |
|---|
|
The Buffer property sets and gets the BufferOutput property. |
Community Additions
ADD
Show:
Note: