summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Simple.page
diff options
context:
space:
mode:
authorxue <>2006-01-21 03:57:16 +0000
committerxue <>2006-01-21 03:57:16 +0000
commitbaf2eb12bc99905ad18fadaa4a542a0d109f9245 (patch)
treecb02339aabb9e11e487108a85668fbf242c21326 /demos/quickstart/protected/pages/Controls/Simple.page
parent039ef5bb2acd9cde5073e4d20459f9d088f0892e (diff)
TTextBox demo completed. Fixed a few issues related with AutoPostBack=true.
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/Simple.page')
-rw-r--r--demos/quickstart/protected/pages/Controls/Simple.page7
1 files changed, 7 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Simple.page b/demos/quickstart/protected/pages/Controls/Simple.page
index f6f981c4..a244429d 100644
--- a/demos/quickstart/protected/pages/Controls/Simple.page
+++ b/demos/quickstart/protected/pages/Controls/Simple.page
@@ -39,6 +39,13 @@
<com:RunBar PagePath="Controls.Samples.TTextBox.Home" />
<h2>TButton</h2>
+<p>
+<tt>TButton</tt> creates a click button on a Web page. The button's caption is specified by <tt>Text</tt> property. A button is used to submit data to a page. <tt>TButton</tt> raises two server-side events, <tt>Click</tt> and <tt>Command</tt>, when it is clicked on the client-side. The difference between <tt>Click</tt> and <tt>Command</tt> events is that the latter event is bubbled up to the button's ancestor controls. A <tt>Command</tt> event handler can use <tt>CommandName</tt> and <tt>CommandParameter</tt> associated with the event to perform specific actions.
+</p>
+<p>
+Clicking on button can trigger form validation, if <tt>CausesValidation</tt>is true. And the validation may be restricted within a certain group of validator controls according to <tt>ValidationGroup</tt>.
+</p>
+<com:RunBar PagePath="Controls.Samples.TButton.Home" />
<h2>TLinkButton</h2>