text box validation - alphabetical order comparison

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

While I do know what alphabetical order is, I'm not sure what this feature is
comparing. I would like to validate a simple password field. There are no
constraints (on text, numbers, etc.) but field should only be 5 characters
long. In order to add some measure of security? I thought I add: greater
than 5 and less than 10 as values but I have no idea what those (alphabetical
order comparison) values mean or how they work. Any ideas would be great.
 
If you mean the options under Data values
- That is a numeric comparison (and should not be used)

All you need to do is set the file to required
- if it must always be 5 char long set the min & max values to 5

The Text format is only used if you are constraining those 5 char to letters or numbers or both

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| While I do know what alphabetical order is, I'm not sure what this feature is
| comparing. I would like to validate a simple password field. There are no
| constraints (on text, numbers, etc.) but field should only be 5 characters
| long. In order to add some measure of security? I thought I add: greater
| than 5 and less than 10 as values but I have no idea what those (alphabetical
| order comparison) values mean or how they work. Any ideas would be great.
| --
| mw
 
Thank you so much for your quick reply. Yes, you are right! I do mean the
options under Data values. In HELP it says "To specify a value constraint,
such as requiring the value in the field to be greater than 10..." In the
notes section below it reads: "Note: the validation rule will use
alphabetical-order comparisons if the data type is Text or No Constraints".
This leads me to believe that I could enter something in the Field must be:
Value: section that would somehow validate a combination of letters. What I
am trying to achieve is to have FrontPage validate a password field that is
not simply based on the length or type (text, number, etc.).
 
that just means if you are using text and enter less than say: bbbbb
and the user enters aaaaa the form will validate because aaaa is before bbbbb

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| Thank you so much for your quick reply. Yes, you are right! I do mean the
| options under Data values. In HELP it says "To specify a value constraint,
| such as requiring the value in the field to be greater than 10..." In the
| notes section below it reads: "Note: the validation rule will use
| alphabetical-order comparisons if the data type is Text or No Constraints".
| This leads me to believe that I could enter something in the Field must be:
| Value: section that would somehow validate a combination of letters. What I
| am trying to achieve is to have FrontPage validate a password field that is
| not simply based on the length or type (text, number, etc.).
| --
| mw
|
|
| "Stefan B Rusynko" wrote:
|
| > If you mean the options under Data values
| > - That is a numeric comparison (and should not be used)
| >
| > All you need to do is set the file to required
| > - if it must always be 5 char long set the min & max values to 5
| >
| > The Text format is only used if you are constraining those 5 char to letters or numbers or both
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
| > _____________________________________________
| >
| >
| > | While I do know what alphabetical order is, I'm not sure what this feature is
| > | comparing. I would like to validate a simple password field. There are no
| > | constraints (on text, numbers, etc.) but field should only be 5 characters
| > | long. In order to add some measure of security? I thought I add: greater
| > | than 5 and less than 10 as values but I have no idea what those (alphabetical
| > | order comparison) values mean or how they work. Any ideas would be great.
| > | --
| > | mw
| >
| >
| >
 
Back
Top