blob: a7767e2d75e2d549fee8a942e77deda87590650a (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<com:TContent ID="body">
<h1>TActiveHyperLink Samples</h1>
<table class="sampletable">
<tr><td class="samplenote">
A regular hyperlink:
</td><td class="sampleaction">
Welcome to
<com:TActiveHyperLink
ID="link1"
NavigateUrl="http://www.pradosoft.com/"
Text="PradoSoft.com"
Target="_blank" />.
</td>
<td class="sampleaction">
<com:TActiveButton ID="button1" Text="Change to Navigate Url" OnClick="button1_clicked" />
</td>
</tr>
<tr><td class="samplenote">
A text hyperlink with css style:
</td><td class="sampleaction">
Welcome to
<com:TActiveHyperLink
ID="link2"
NavigateUrl="http://www.pradosoft.com/"
Text="PradoSoft.com"
Target="_blank"
BackColor="silver"
Font.Italic="true" />.
</td>
<td class="sampleaction">
<com:TActiveButton ID="button2" Text="Change to Target" OnClick="button2_clicked" />
</td>
</tr>
<tr><td class="samplenote">
An image hyperlink:
</td><td class="sampleaction">
<com:TActiveHyperLink
ID="link3"
NavigateUrl="http://www.pradosoft.com/"
ImageUrl=<%~hello_world.gif%>
Text="Hello World" />.
</td>
<td class="sampleaction">
<com:TActiveButton ID="button3" Text="Change to Text" OnClick="button3_clicked" />
</td>
</tr>
<tr><td class="samplenote">
A hyerplink with body contents as link text:
</td><td class="sampleaction">
<com:TActiveHyperLink
ID="link4"
NavigateUrl="http://www.pradosoft.com/"
Target="_blank">
Body contents
</com:TActiveHyperLink>
</td>
<td class="sampleaction">
<com:TActiveButton ID="button4" Text="Change to Image" OnClick="button4_clicked" />
</td>
</tr>
</table>
</com:TContent>
|