Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebControls / RequiredFieldValidator.cs / 1 / RequiredFieldValidator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI.WebControls { using System.ComponentModel; using System.Web; using System.Security.Permissions; using System.Web.Util; ////// [ ToolboxData("<{0}:RequiredFieldValidator runat=\"server\" ErrorMessage=\"RequiredFieldValidator\">{0}:RequiredFieldValidator>") ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class RequiredFieldValidator : BaseValidator { ///Checks if the value of /// the associated input control is different from its initial value. ////// [ WebCategory("Behavior"), Themeable(false), DefaultValue(""), WebSysDescription(SR.RequiredFieldValidator_InitialValue) ] public string InitialValue { get { object o = ViewState["InitialValue"]; return((o == null) ? String.Empty : (string)o); } set { ViewState["InitialValue"] = value; } } ///Gets or sets the initial value of the associated input control. ////// /// AddAttributesToRender method /// protected override void AddAttributesToRender(HtmlTextWriter writer) { base.AddAttributesToRender(writer); if (RenderUplevel) { string id = ClientID; HtmlTextWriter expandoAttributeWriter = (EnableLegacyRendering) ? writer : null; AddExpandoAttribute(expandoAttributeWriter, id, "evaluationfunction", "RequiredFieldValidatorEvaluateIsValid", false); AddExpandoAttribute(expandoAttributeWriter, id, "initialvalue", InitialValue); } } ////// /// EvaluateIsValid method /// protected override bool EvaluateIsValid() { // Get the control value, return true if it is not found string controlValue = GetControlValidationValue(ControlToValidate); if (controlValue == null) { Debug.Fail("Should have been caught by PropertiesValid check"); return true; } // See if the control has changed return(!controlValue.Trim().Equals(InitialValue.Trim())); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI.WebControls { using System.ComponentModel; using System.Web; using System.Security.Permissions; using System.Web.Util; ////// [ ToolboxData("<{0}:RequiredFieldValidator runat=\"server\" ErrorMessage=\"RequiredFieldValidator\">{0}:RequiredFieldValidator>") ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class RequiredFieldValidator : BaseValidator { ///Checks if the value of /// the associated input control is different from its initial value. ////// [ WebCategory("Behavior"), Themeable(false), DefaultValue(""), WebSysDescription(SR.RequiredFieldValidator_InitialValue) ] public string InitialValue { get { object o = ViewState["InitialValue"]; return((o == null) ? String.Empty : (string)o); } set { ViewState["InitialValue"] = value; } } ///Gets or sets the initial value of the associated input control. ////// /// AddAttributesToRender method /// protected override void AddAttributesToRender(HtmlTextWriter writer) { base.AddAttributesToRender(writer); if (RenderUplevel) { string id = ClientID; HtmlTextWriter expandoAttributeWriter = (EnableLegacyRendering) ? writer : null; AddExpandoAttribute(expandoAttributeWriter, id, "evaluationfunction", "RequiredFieldValidatorEvaluateIsValid", false); AddExpandoAttribute(expandoAttributeWriter, id, "initialvalue", InitialValue); } } ////// /// EvaluateIsValid method /// protected override bool EvaluateIsValid() { // Get the control value, return true if it is not found string controlValue = GetControlValidationValue(ControlToValidate); if (controlValue == null) { Debug.Fail("Should have been caught by PropertiesValid check"); return true; } // See if the control has changed return(!controlValue.Trim().Equals(InitialValue.Trim())); } } } // 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
- PresentationTraceSources.cs
- SerializationException.cs
- EllipseGeometry.cs
- OpCodes.cs
- MsmqIntegrationProcessProtocolHandler.cs
- UInt64Storage.cs
- TextParagraphView.cs
- _LocalDataStore.cs
- nulltextnavigator.cs
- TemplateControl.cs
- SqlCommandBuilder.cs
- XmlUtf8RawTextWriter.cs
- ellipse.cs
- XmlNodeComparer.cs
- GridViewSortEventArgs.cs
- XmlSchemaSimpleTypeRestriction.cs
- COSERVERINFO.cs
- ChannelPoolSettingsElement.cs
- RefExpr.cs
- HtmlElementCollection.cs
- ZoneLinkButton.cs
- HtmlEncodedRawTextWriter.cs
- Fx.cs
- AttachedPropertyInfo.cs
- TypeHelpers.cs
- WpfKnownMemberInvoker.cs
- CompilerCollection.cs
- XmlDigitalSignatureProcessor.cs
- Geometry.cs
- URLAttribute.cs
- Storyboard.cs
- SqlDataSourceQuery.cs
- DataTableReaderListener.cs
- ScriptServiceAttribute.cs
- PerformanceCounterManager.cs
- SchemaMerger.cs
- TextParaLineResult.cs
- RelationshipDetailsRow.cs
- ObjectDataSourceDisposingEventArgs.cs
- SQLRoleProvider.cs
- Fonts.cs
- AssociationEndMember.cs
- Graphics.cs
- TypefaceCollection.cs
- DataGridViewRowConverter.cs
- ZipPackage.cs
- XmlSchemaAppInfo.cs
- NamespaceTable.cs
- SafeRightsManagementQueryHandle.cs
- EventProxy.cs
- RectAnimationUsingKeyFrames.cs
- Token.cs
- WindowsContainer.cs
- ListenerElementsCollection.cs
- TreeWalkHelper.cs
- ModuleConfigurationInfo.cs
- SpecialNameAttribute.cs
- QueryableFilterUserControl.cs
- XmlSchemaRedefine.cs
- Wizard.cs
- EntityContainerEmitter.cs
- HwndSubclass.cs
- Model3D.cs
- SplitterDesigner.cs
- DBParameter.cs
- PenCursorManager.cs
- AssemblyCollection.cs
- DiffuseMaterial.cs
- KeyValuePair.cs
- AnnotationComponentChooser.cs
- TagPrefixCollection.cs
- SchemaCollectionPreprocessor.cs
- ProfilePropertyNameValidator.cs
- MethodCallConverter.cs
- Normalization.cs
- BaseParagraph.cs
- PointAnimationUsingKeyFrames.cs
- JpegBitmapDecoder.cs
- SchemaNamespaceManager.cs
- Int64AnimationBase.cs
- EventArgs.cs
- SQLCharsStorage.cs
- EntityDataSourceColumn.cs
- TextEditorLists.cs
- ImageDesigner.cs
- ColumnClickEvent.cs
- ComponentChangingEvent.cs
- ResourceReferenceExpressionConverter.cs
- WebControlsSection.cs
- ActivationArguments.cs
- ProcessHostFactoryHelper.cs
- NameScope.cs
- WasNotInstalledException.cs
- XsltArgumentList.cs
- LongTypeConverter.cs
- ColumnMap.cs
- FormatException.cs
- StreamAsIStream.cs
- LambdaCompiler.cs
- MonthChangedEventArgs.cs