summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/THyperLink/Home.page
blob: 901aa0f028c46e54d62f4cf2d68746111fcc1685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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="https://github.com/pradosoft/prado"
	Text="Prado framework"
	Target="_blank" />.
</td></tr>

<tr><td class="samplenote">
A text hyperlink with css style:
</td><td class="sampleaction">
Welcome to
<com:THyperLink
	NavigateUrl="https://github.com/pradosoft/prado"
	Text="Prado framework"
	Target="_blank"
	BackColor="silver"
	Font.Italic="true" />.
</td></tr>

<tr><td class="samplenote">
An image hyperlink:
</td><td class="sampleaction">
<com:THyperLink
	NavigateUrl="https://github.com/pradosoft/prado"
	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="https://github.com/pradosoft/prado"
	Target="_blank">
Body contents
</com:THyperLink>
</td></tr>

</table>

</com:TContent>