blob: ac93715d464eb22ff2b4a3588dfa7a97ada5a2c8 (
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
|
<com:TContent ID="body">
<h1>TRegularExpressionValidator Samples</h1>
<table class="sampletable">
<tr>
<td class="samplenote">
Regular expression validator with default settings:
</td>
<td class="sampleaction">
<com:TTextBox ID="TextBox1" />
<com:TRegularExpressionValidator
ValidationGroup="Group1"
ControlToValidate="TextBox1"
RegularExpression="\w+"
Text="Only word characters are allowed." />
<com:TButton Text="Submit" ValidationGroup="Group1" />
</td>
</tr>
<tr>
<td class="samplenote">
Regular expression validator with client-side validation disabled:
</td>
<td class="sampleaction">
<com:TTextBox ID="TextBox2" />
<com:TRegularExpressionValidator
ValidationGroup="Group2"
EnableClientScript="false"
ControlToValidate="TextBox2"
RegularExpression="\w+"
Text="Only word characters are allowed." />
<com:TButton Text="Submit" ValidationGroup="Group2" />
</td>
</tr>
<tr>
<td class="samplenote">
Regular expression validator with focus-on-error enabled and dynamic display:
</td>
<td class="sampleaction">
<com:TTextBox ID="TextBox3" />
<com:TRegularExpressionValidator
ValidationGroup="Group3"
ControlToValidate="TextBox3"
Display="Dynamic"
RegularExpression="\w+"
Text="Only word characters are allowed." />
<com:TButton Text="Submit" ValidationGroup="Group3" />
</td>
</tr>
</table>
</com:TContent>
|