summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TLinkButton/Home.page
blob: d74704ab08959dc0fe3ff7f74d588e616161ed8e (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
<com:TContent ID="body">

<h1>TLinkButton Samples</h1>

<table class="sampletable">

<tr><td class="samplenote">
Link button with customized color and font:
</td><td class="sampleaction">
<com:TLinkButton
	Text="link button"
	ForeColor="silver"
	BackColor="black"
	Font.Size="14pt"
/>
</td></tr>

<tr><td class="samplenote">
Link button with only body content:
</td><td class="sampleaction">
<com:TLinkButton>
body content
</com:TLinkButton>
</td></tr>

<tr><td class="samplenote">
A click link button:
</td><td class="sampleaction">
<com:TLinkButton Text="click me" OnClick="buttonClicked" />
</td></tr>

<tr><td class="samplenote">
A command link button:
</td><td class="sampleaction">
<com:TLinkButton
	Text="click me"
	OnCommand="buttonClicked"
	CommandName="test"
	CommandParameter="value"
	/>
</td></tr>

<tr><td class="samplenote">
A button causing validation:
</td><td class="sampleaction">
<com:TTextBox ID="TextBox" />
<com:TRequiredFieldValidator
	ControlToValidate="TextBox"
	Display="Dynamic"
	ErrorMessage="input required in the textbox"
	ValidationGroup="Group"
	/>
<com:TLinkButton Text="submit" ValidationGroup="Group" />
</td></tr>

</table>

</com:TContent>