BaseCompareValidator.GetFullYear Method
Assembly: System.Web (in system.web.dll)
Use the GetFullYear method to generate the four-digit year representation of the specified two-digit year. The four-digit year representation depends on the value of the CutoffYear property, which contains the maximum year that can be represented by a two-digit year in a 100-year range. For example, if the CutoffYear property contains the value 2029, the GetFullYear method returns a year between 1930 and 2029. The two-digit year 30 is interpreted as 1930, while 29 is interpreted as 2029. You can change the maximum year that can be represented by a two-digit year by setting the System.Globalization.Calendar.TwoDigitYearMax property.
Note: |
|---|
| Because this method is static, you can use it without creating an instance of the class by qualifying the method name along with the class name--for example, BaseCompareValidator.GetFullYear. |
Note: