diff options
| -rw-r--r-- | .gitattributes | 1 | ||||
| -rw-r--r-- | demos/quickstart/protected/pages/Controls/FlushOutput.page | 29 | ||||
| -rw-r--r-- | demos/quickstart/protected/pages/Controls/Standard.page | 4 | 
3 files changed, 34 insertions, 0 deletions
| diff --git a/.gitattributes b/.gitattributes index fea7181d..55e6ef02 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1533,6 +1533,7 @@ demos/quickstart/protected/pages/Controls/DataList.page -text  demos/quickstart/protected/pages/Controls/DatePicker.page -text  demos/quickstart/protected/pages/Controls/Expression.page -text  demos/quickstart/protected/pages/Controls/FileUpload.page -text +demos/quickstart/protected/pages/Controls/FlushOutput.page -text  demos/quickstart/protected/pages/Controls/Head.page -text  demos/quickstart/protected/pages/Controls/HiddenField.page -text  demos/quickstart/protected/pages/Controls/HtmlArea.page -text diff --git a/demos/quickstart/protected/pages/Controls/FlushOutput.page b/demos/quickstart/protected/pages/Controls/FlushOutput.page new file mode 100644 index 00000000..39b0b8be --- /dev/null +++ b/demos/quickstart/protected/pages/Controls/FlushOutput.page @@ -0,0 +1,29 @@ +<com:TContent ID="body" >
 +
 +<h1>TFlushOutput</h1>
 +<com:DocLink ClassPath="System.Web.UI.WebControls.TFlushOutput" />
 +
 +<p class="block-content">
 +<tt>TFlushOutput</tt> enables forced flushing of the current output buffer
 +at (a) certain point(s) in the page, after rendering of all previous
 +controls has been completed.
 +</p>
 +
 +<p class="block-content">
 +To use <tt>TFlushOutput</tt>, simply place it where you want in a template;
 +the output buffered between the start of the page (or a
 +previous <tt>TFlushOutput</tt>) and the <tt>TFlushOutput</tt> will be sent to the client immediately.
 +</p>
 +
 +<com:TTextHighlighter Language="prado" CssClass="source block-content">
 +<com:TFlushOutput />
 +</com:TTextHighlighter>
 +
 +<p class="block-content">
 +You can specify whether you want to keep buffering of the output 
 +(if it was enabled) till the next occourence of a <tt><com: TFlushOutput /></tt>
 +or the end of the page rendering, or stop buffering, by using the 
 +<tt>ContinueBuffering</tt> property.
 +</p>
 +
 +</com:TContent>
 diff --git a/demos/quickstart/protected/pages/Controls/Standard.page b/demos/quickstart/protected/pages/Controls/Standard.page index 54d631e4..9c805188 100644 --- a/demos/quickstart/protected/pages/Controls/Standard.page +++ b/demos/quickstart/protected/pages/Controls/Standard.page @@ -48,6 +48,10 @@    </li>
    <li>
 +  <a href="?page=Controls.FlushOutput">TFlushOutput</a> enables forced flushing of the current output buffer at (a) certain point(s) in the page.
 +  </li>
 +
 +  <li>
    <a href="?page=Controls.Head">THead</a> represents the <head> element on an HTML Web page. It is required by a PRADO page should it use themes.
    </li>
 | 
