Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / RangeValidator.cs / 1305376 / RangeValidator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Diagnostics; using System.Drawing; using System.Web; using System.Web.UI; using System.Web.UI.Design.WebControls; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using WebCntrls = System.Web.UI.WebControls; using System.Security.Permissions; namespace System.Web.UI.MobileControls { /* * Mobile RangeValidator class. * The RangeValidator checks that the value of the associated input control * is within a minimum and maximum value. These can either be constant * values or other input controls. A data type property specifies how the * values being compared should be interpreted: Strings, integers, dates, * etc. * * Copyright (c) 2000 Microsoft Corporation */ ///[ ToolboxData("<{0}:RangeValidator runat=\"server\" ErrorMessage=\"RangeValidator\">{0}:RangeValidator>"), ToolboxItem("System.Web.UI.Design.WebControlToolboxItem, " + AssemblyRef.SystemDesign) ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] public class RangeValidator : BaseValidator { private WebCntrls.RangeValidator _webRangeValidator; /// protected override WebCntrls.BaseValidator CreateWebValidator() { _webRangeValidator = new WebCntrls.RangeValidator(); return _webRangeValidator; } //////////////////////////////////////////////////////////////////////// // Mimic the properties exposed in the original RangeValidator. // The properties are got and set directly from the original RangeValidator. //////////////////////////////////////////////////////////////////////// /// [ Bindable(true), DefaultValue(""), MobileCategory(SR.Category_Behavior), MobileSysDescription(SR.RangeValidator_MaximumValue) ] public String MaximumValue { get { return _webRangeValidator.MaximumValue; } set { _webRangeValidator.MaximumValue = value; } } /// [ Bindable(true), DefaultValue(""), MobileCategory(SR.Category_Behavior), MobileSysDescription(SR.RangeValidator_MinimumValue) ] public String MinimumValue { get { return _webRangeValidator.MinimumValue; } set { _webRangeValidator.MinimumValue = value; } } /// [ Bindable(false), DefaultValue(ValidationDataType.String), MobileCategory(SR.Category_Behavior), MobileSysDescription(SR.RangeValidator_Type) ] public ValidationDataType Type { get { return _webRangeValidator.Type; } set { _webRangeValidator.Type = value; } } /// protected override bool EvaluateIsValid() { return EvaluateIsValidInternal(); } ///////////////////////////////////////////////////////////////////// // Helper function adopted from WebForms RangeValidator ///////////////////////////////////////////////////////////////////// /// protected override bool ControlPropertiesValid() { // Check if the control values can be converted to data type String maximumValue = MaximumValue; if (!WebCntrls.BaseCompareValidator.CanConvert(maximumValue, Type)) { throw new ArgumentException(SR.GetString( SR.Validator_ValueBadType, maximumValue, "MaximumValue", ID, PropertyConverter.EnumToString( typeof(ValidationDataType), Type) )); } String minumumValue = MinimumValue; if (!WebCntrls.BaseCompareValidator.CanConvert(minumumValue, Type)) { throw new ArgumentException(SR.GetString( SR.Validator_ValueBadType, minumumValue, "MinimumValue", ID, PropertyConverter.EnumToString( typeof(ValidationDataType), Type) )); } // Check for overlap. if (WebBaseCompareValidator.Compare(minumumValue, maximumValue, ValidationCompareOperator.GreaterThan, Type)) { throw new ArgumentException(SR.GetString( SR.RangeValidator_RangeOverlap, maximumValue, minumumValue, ID)); } return base.ControlPropertiesValid(); } // The reason of having this class is to expose the method // BaseCompareValidator.Compare which is a protected method in the // base class. Since the implementation of the method is not // trivial, instead of copying the code to this file, the following // subclass inherits the base class and expose a new public method // which calls its base implementation. While this solution doesn't // look elegant, it helps eliminate the code maintanence issue of // copying the code. private class WebBaseCompareValidator : BaseCompareValidator { // Have to define this method since it is abstract in the base // class. protected override bool EvaluateIsValid() { Debug.Assert(false, "Should never be called."); return true; } public static new bool Compare( String leftText, String rightText, ValidationCompareOperator op, ValidationDataType type) { return BaseCompareValidator.Compare(leftText, rightText, op, type); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Diagnostics; using System.Drawing; using System.Web; using System.Web.UI; using System.Web.UI.Design.WebControls; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using WebCntrls = System.Web.UI.WebControls; using System.Security.Permissions; namespace System.Web.UI.MobileControls { /* * Mobile RangeValidator class. * The RangeValidator checks that the value of the associated input control * is within a minimum and maximum value. These can either be constant * values or other input controls. A data type property specifies how the * values being compared should be interpreted: Strings, integers, dates, * etc. * * Copyright (c) 2000 Microsoft Corporation */ ///[ ToolboxData("<{0}:RangeValidator runat=\"server\" ErrorMessage=\"RangeValidator\">{0}:RangeValidator>"), ToolboxItem("System.Web.UI.Design.WebControlToolboxItem, " + AssemblyRef.SystemDesign) ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] public class RangeValidator : BaseValidator { private WebCntrls.RangeValidator _webRangeValidator; /// protected override WebCntrls.BaseValidator CreateWebValidator() { _webRangeValidator = new WebCntrls.RangeValidator(); return _webRangeValidator; } //////////////////////////////////////////////////////////////////////// // Mimic the properties exposed in the original RangeValidator. // The properties are got and set directly from the original RangeValidator. //////////////////////////////////////////////////////////////////////// /// [ Bindable(true), DefaultValue(""), MobileCategory(SR.Category_Behavior), MobileSysDescription(SR.RangeValidator_MaximumValue) ] public String MaximumValue { get { return _webRangeValidator.MaximumValue; } set { _webRangeValidator.MaximumValue = value; } } /// [ Bindable(true), DefaultValue(""), MobileCategory(SR.Category_Behavior), MobileSysDescription(SR.RangeValidator_MinimumValue) ] public String MinimumValue { get { return _webRangeValidator.MinimumValue; } set { _webRangeValidator.MinimumValue = value; } } /// [ Bindable(false), DefaultValue(ValidationDataType.String), MobileCategory(SR.Category_Behavior), MobileSysDescription(SR.RangeValidator_Type) ] public ValidationDataType Type { get { return _webRangeValidator.Type; } set { _webRangeValidator.Type = value; } } /// protected override bool EvaluateIsValid() { return EvaluateIsValidInternal(); } ///////////////////////////////////////////////////////////////////// // Helper function adopted from WebForms RangeValidator ///////////////////////////////////////////////////////////////////// /// protected override bool ControlPropertiesValid() { // Check if the control values can be converted to data type String maximumValue = MaximumValue; if (!WebCntrls.BaseCompareValidator.CanConvert(maximumValue, Type)) { throw new ArgumentException(SR.GetString( SR.Validator_ValueBadType, maximumValue, "MaximumValue", ID, PropertyConverter.EnumToString( typeof(ValidationDataType), Type) )); } String minumumValue = MinimumValue; if (!WebCntrls.BaseCompareValidator.CanConvert(minumumValue, Type)) { throw new ArgumentException(SR.GetString( SR.Validator_ValueBadType, minumumValue, "MinimumValue", ID, PropertyConverter.EnumToString( typeof(ValidationDataType), Type) )); } // Check for overlap. if (WebBaseCompareValidator.Compare(minumumValue, maximumValue, ValidationCompareOperator.GreaterThan, Type)) { throw new ArgumentException(SR.GetString( SR.RangeValidator_RangeOverlap, maximumValue, minumumValue, ID)); } return base.ControlPropertiesValid(); } // The reason of having this class is to expose the method // BaseCompareValidator.Compare which is a protected method in the // base class. Since the implementation of the method is not // trivial, instead of copying the code to this file, the following // subclass inherits the base class and expose a new public method // which calls its base implementation. While this solution doesn't // look elegant, it helps eliminate the code maintanence issue of // copying the code. private class WebBaseCompareValidator : BaseCompareValidator { // Have to define this method since it is abstract in the base // class. protected override bool EvaluateIsValid() { Debug.Assert(false, "Should never be called."); return true; } public static new bool Compare( String leftText, String rightText, ValidationCompareOperator op, ValidationDataType type) { return BaseCompareValidator.Compare(leftText, rightText, op, type); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StoragePropertyMapping.cs
- TraceContext.cs
- Composition.cs
- CodeSnippetExpression.cs
- TemplateControl.cs
- ObjectCloneHelper.cs
- Code.cs
- ConfigDefinitionUpdates.cs
- XpsS0ValidatingLoader.cs
- TableLayoutStyleCollection.cs
- EdmValidator.cs
- WinEventQueueItem.cs
- FusionWrap.cs
- WebPartTransformerCollection.cs
- ObjectStateManager.cs
- ThicknessAnimationUsingKeyFrames.cs
- FileSecurity.cs
- NonParentingControl.cs
- SmtpLoginAuthenticationModule.cs
- ConfigXmlElement.cs
- PropertyGeneratedEventArgs.cs
- HybridObjectCache.cs
- DataGridRowHeader.cs
- ClientScriptManagerWrapper.cs
- TextTreeTextBlock.cs
- TreeViewEvent.cs
- IteratorDescriptor.cs
- HelpKeywordAttribute.cs
- ResXDataNode.cs
- XPathAncestorIterator.cs
- HandledEventArgs.cs
- CompositeTypefaceMetrics.cs
- BackStopAuthenticationModule.cs
- TypeNameParser.cs
- XmlImplementation.cs
- HyperLink.cs
- SqlFormatter.cs
- SQLInt32Storage.cs
- XmlAtomicValue.cs
- Trace.cs
- DependencyPropertyValueSerializer.cs
- ClientUtils.cs
- DataGridColumn.cs
- PanelStyle.cs
- WebConfigurationFileMap.cs
- OrderedDictionary.cs
- Exception.cs
- DeleteCardRequest.cs
- XmlUtil.cs
- DispatcherObject.cs
- BaseTreeIterator.cs
- MenuAutomationPeer.cs
- Triangle.cs
- VisualTreeUtils.cs
- Latin1Encoding.cs
- WebBrowsableAttribute.cs
- coordinator.cs
- HttpHandlersInstallComponent.cs
- SchemaElementLookUpTableEnumerator.cs
- ToolboxCategory.cs
- FrameworkTemplate.cs
- basemetadatamappingvisitor.cs
- SourceFileBuildProvider.cs
- UnhandledExceptionEventArgs.cs
- WebScriptClientGenerator.cs
- XmlIlGenerator.cs
- GridErrorDlg.cs
- ClrPerspective.cs
- ResourceExpressionBuilder.cs
- HMACSHA512.cs
- NodeFunctions.cs
- AutoGeneratedField.cs
- Collection.cs
- WebPartMovingEventArgs.cs
- GatewayDefinition.cs
- CodeDirectoryCompiler.cs
- DefinitionUpdate.cs
- SHA512Managed.cs
- NestPullup.cs
- ReflectionServiceProvider.cs
- LocalizationComments.cs
- ReadContentAsBinaryHelper.cs
- XmlDataProvider.cs
- TableLayoutCellPaintEventArgs.cs
- WinEventTracker.cs
- HtmlUtf8RawTextWriter.cs
- control.ime.cs
- MultiSelectRootGridEntry.cs
- SHA1Managed.cs
- Mappings.cs
- HttpGetServerProtocol.cs
- XmlSchemaParticle.cs
- SafeProcessHandle.cs
- OAVariantLib.cs
- EncryptedHeader.cs
- HttpChannelHelper.cs
- XPathDocument.cs
- VariableQuery.cs
- DataGridDesigner.cs
- AspProxy.cs