Page.AsyncMode 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 is processed synchronously or asynchronously.
Namespace: System.Web.UIAssembly: System.Web (in system.web.dll)
/** @property */ protected boolean get_AsyncMode () /** @property */ protected void set_AsyncMode (boolean value)
protected function get AsyncMode () : boolean protected function set AsyncMode (value : boolean)
Not applicable.
Property Value
true if the page is processed asynchronously; otherwise, false.The AsyncMode property is set by the Page parser when code for the page is generated. Use the Async attribute in @ Page directive to set this value.
Asynchronous pages do not work when the AspCompat attribute is set to true or the Transaction attribute is set to a value other than Disabled in the @ Page directive.
Community Additions
ADD
Show: