diff options
| author | xue <> | 2006-02-25 19:12:55 +0000 | 
|---|---|---|
| committer | xue <> | 2006-02-25 19:12:55 +0000 | 
| commit | 2bea1de69b4c815c8bc6027ef0cf9e14f8352884 (patch) | |
| tree | ba5d5cc6536be4d8ab0b8e569e2669caf111e5fe /demos/quickstart/protected/pages/Controls | |
| parent | bd93d2fecf1ce96ac9a4f6557335489a6347f509 (diff) | |
TValidationSummary font color is set as red by default.
Diffstat (limited to 'demos/quickstart/protected/pages/Controls')
| -rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TValidationSummary/Home.page | 26 | 
1 files changed, 13 insertions, 13 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TValidationSummary/Home.page b/demos/quickstart/protected/pages/Controls/Samples/TValidationSummary/Home.page index 5ac143ae..b345dfcc 100644 --- a/demos/quickstart/protected/pages/Controls/Samples/TValidationSummary/Home.page +++ b/demos/quickstart/protected/pages/Controls/Samples/TValidationSummary/Home.page @@ -7,33 +7,33 @@  	<legend>Create New Account</legend>
  <div class="username">
 -	Username: 
 +	Username:
  	<com:TTextBox ID="Username" />
  	<com:TRequiredFieldValidator
  		ID="UsernameVal"
  		ControlToValidate="Username"
 -		Display="None"
  		ValidationGroup="Group1"
 -		ErrorMessage="a username is required." />		
 +		Text="*"
 +		ErrorMessage="a username is required." />
  </div>
  <div class="password">
  	Password
  	<com:TTextBox ID="Password" TextMode="Password" />
 +	<com:TRequiredFieldValidator
 +		ID="PasswordVal"
 +		ControlToValidate="Password"
 +		ValidationGroup="Group1"
 +		Text="*"
 +		ErrorMessage="a password is required." />
  </div>
 -<com:TRequiredFieldValidator
 -	ID="PasswordVal"
 -	ControlToValidate="Password"
 -	Display="None"
 -	ValidationGroup="Group1"
 -	ErrorMessage="a password is required." />	
 -	
 +
  <div class="create">
  	<com:TButton ID="Create" ValidationGroup="Group1" Text="Create New Account"/>
  </div>
  <div class="registrationSummary">
 -	<com:TValidationSummary 
 +	<com:TValidationSummary
  		ValidationGroup="Group1"
  		Display="None"
  		HeaderText="Unable to create new account because" />
 @@ -48,7 +48,7 @@  <div class="username">
  	Login Name:
  	<com:TTextBox ID="UserID" />
 -		
 +
  	<com:TRequiredFieldValidator
  		ID="UserVal1"
  		ControlToValidate="UserID"
 @@ -71,7 +71,7 @@  <com:TButton ID="login" ValidationGroup="Group2" CssClass="button" Text="Sign In" />
  <div class="validation">
 -	<com:TValidationSummary 
 +	<com:TValidationSummary
  		ValidationGroup="Group2"
  		AutoUpdate="false"
  		Display="None"
  | 
