diff options
author | xue <> | 2006-03-27 03:40:01 +0000 |
---|---|---|
committer | xue <> | 2006-03-27 03:40:01 +0000 |
commit | 3192eb5cafef46ed5203a8cb2f7ae885e5693a47 (patch) | |
tree | e069214554216b8ab309d0c0ead9f52c6d42dca4 /demos/quickstart/protected/pages/Controls/Samples/TStatements | |
parent | 27578bac69d64900e8b252bd5a61a2c5d2b13ee8 (diff) |
Added demos for TExpression, TStatements, TSafeHtml and TTextHighlighter.
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/Samples/TStatements')
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TStatements/Home.page | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TStatements/Home.page b/demos/quickstart/protected/pages/Controls/Samples/TStatements/Home.page new file mode 100644 index 00000000..66734ce0 --- /dev/null +++ b/demos/quickstart/protected/pages/Controls/Samples/TStatements/Home.page @@ -0,0 +1,29 @@ +<com:TContent ID="body">
+
+<h1>TStatements Sample</h1>
+
+<table class="sampletable">
+
+<tr><td class="samplenote">
+Using TStatements component tag:
+</td><td class="sampleaction">
+<com:TStatements>
+ <prop:Statements>
+ $uid=$this->UniqueID;
+ echo "UniqueID is '$uid'.";
+ </prop:Statements>
+</com:TStatements>
+</td></tr>
+
+<tr><td class="samplenote">
+Using shortcut statements tag:
+</td><td class="sampleaction">
+<%%
+ $uid=$this->UniqueID;
+ echo "UniqueID is '$uid'.";
+%>
+</td></tr>
+
+</table>
+
+</com:TContent>
\ No newline at end of file |