diff options
author | xue <> | 2006-04-16 18:02:31 +0000 |
---|---|---|
committer | xue <> | 2006-04-16 18:02:31 +0000 |
commit | 9db90898be134c9f70c0b334ec071223e60ed76c (patch) | |
tree | c499036f6ca4b350b3f4ae48b0d55cf8308b385d /tests/FunctionalTests/validators/protected/pages/CheckBox.page | |
parent | fc38326ea80e73717fb1d187a16421f7bc1b1b04 (diff) |
Merge from 3.0 branch till 924
Diffstat (limited to 'tests/FunctionalTests/validators/protected/pages/CheckBox.page')
-rw-r--r-- | tests/FunctionalTests/validators/protected/pages/CheckBox.page | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/FunctionalTests/validators/protected/pages/CheckBox.page b/tests/FunctionalTests/validators/protected/pages/CheckBox.page new file mode 100644 index 00000000..e5cb39ff --- /dev/null +++ b/tests/FunctionalTests/validators/protected/pages/CheckBox.page @@ -0,0 +1,40 @@ +<com:TContent ID="Content">
+<h1>Validations Triggered by TCheckBox</h1>
+
+<com:TTextBox ID="TextBox1" />
+<com:TRequiredFieldValidator
+ Text="Textbox1 required"
+ ControlToValidate="TextBox1"
+ ValidationGroup="Group1" />
+<com:TCheckBox Text="Submit1"
+ AutoPostBack="true"
+ ValidationGroup="Group1"
+ OnCheckedChanged="button1Clicked" />
+<com:TLabel ID="Result1" />
+
+<hr/>
+
+<com:TTextBox ID="TextBox2" />
+<com:TRequiredFieldValidator
+ Text="Textbox2 required"
+ ControlToValidate="TextBox2" />
+<com:TCheckBox Text="Submit2"
+ AutoPostBack="true"
+ OnCheckedChanged="button2Clicked" />
+<com:TLabel ID="Result2" />
+
+<hr/>
+
+<com:TTextBox ID="TextBox3" />
+<com:TRequiredFieldValidator
+ Text="Textbox3 required"
+ EnableClientScript="false"
+ ControlToValidate="TextBox3"
+ ValidationGroup="Group3" />
+<com:TCheckBox Text="Submit3"
+ AutoPostBack="true"
+ ValidationGroup="Group3"
+ OnCheckedChanged="button3Clicked" />
+<com:TLabel ID="Result3" />
+
+</com:TContent>
\ No newline at end of file |