diff options
author | xue <> | 2006-01-20 04:20:39 +0000 |
---|---|---|
committer | xue <> | 2006-01-20 04:20:39 +0000 |
commit | 138dbc23381a82eaf17a2685cc3bdb54ad8b7f51 (patch) | |
tree | 273ff3e0fa183830178d8f51dff4643010baccd3 /demos/quickstart/protected/pages/Controls/Samples/THyperLink | |
parent | 381d966198453626832c97447deb54f9cc4b06dd (diff) |
Added TImage and THyperLink demos.
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/Samples/THyperLink')
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/THyperLink/Home.page | 50 | ||||
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/THyperLink/hello_world.gif | bin | 0 -> 1602 bytes |
2 files changed, 50 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/THyperLink/Home.page b/demos/quickstart/protected/pages/Controls/Samples/THyperLink/Home.page new file mode 100644 index 00000000..8d8c700e --- /dev/null +++ b/demos/quickstart/protected/pages/Controls/Samples/THyperLink/Home.page @@ -0,0 +1,50 @@ +<com:TContent ID="body">
+
+<h1>THyperLink Samples</h1>
+
+<table class="sampletable">
+
+<tr><td class="samplenote">
+A regular hyperlink:
+</td><td class="sampleaction">
+Welcome to
+<com:THyperLink
+ NavigateUrl="http://www.pradosoft.com/"
+ Text="PradoSoft.com"
+ Target="_blank" />.
+</td></tr>
+
+<tr><td class="samplenote">
+A text hyperlink with css style:
+</td><td class="sampleaction">
+Welcome to
+<com:THyperLink
+ NavigateUrl="http://www.pradosoft.com/"
+ Text="PradoSoft.com"
+ Target="_blank"
+ BackColor="silver"
+ Font.Italic="true" />.
+</td></tr>
+
+<tr><td class="samplenote">
+An image hyperlink:
+</td><td class="sampleaction">
+<com:THyperLink
+ NavigateUrl="http://www.pradosoft.com/"
+ ImageUrl=<%~hello_world.gif%>
+ Text="Hello World" />.
+</td></tr>
+
+<tr><td class="samplenote">
+A hyerplink with body contents as link text:
+</td><td class="sampleaction">
+<com:THyperLink
+ NavigateUrl="http://www.pradosoft.com/"
+ Target="_blank">
+Body contents
+</com:THyperLink>
+</td></tr>
+
+</table>
+
+</com:TContent>
\ No newline at end of file diff --git a/demos/quickstart/protected/pages/Controls/Samples/THyperLink/hello_world.gif b/demos/quickstart/protected/pages/Controls/Samples/THyperLink/hello_world.gif Binary files differnew file mode 100644 index 00000000..bc81443c --- /dev/null +++ b/demos/quickstart/protected/pages/Controls/Samples/THyperLink/hello_world.gif |