Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- DrawListViewSubItemEventArgs.cs
- DesignTimeTemplateParser.cs
- SocketStream.cs
- CompositeCollection.cs
- ServiceParser.cs
- ConfigsHelper.cs
- KeyboardDevice.cs
- SqlSelectStatement.cs
- SafeRightsManagementEnvironmentHandle.cs
- ButtonBase.cs
- DiscoveryInnerClientAdhoc11.cs
- FixedMaxHeap.cs
- HGlobalSafeHandle.cs
- SHA1CryptoServiceProvider.cs
- dataprotectionpermission.cs
- HtmlForm.cs
- PagesSection.cs
- StickyNoteAnnotations.cs
- RemotingAttributes.cs
- SQLGuidStorage.cs
- GeometryDrawing.cs
- Attribute.cs
- EntityDataSourceDesigner.cs
- CollectionViewGroup.cs
- FaultException.cs
- typedescriptorpermission.cs
- QueryOutputWriter.cs
- AQNBuilder.cs
- ListItemViewAttribute.cs
- XmlSerializerFactory.cs
- BackEase.cs
- SettingsBase.cs
- DataGridViewUtilities.cs
- SchemaElement.cs
- PriorityBinding.cs
- PackUriHelper.cs
- XmlKeywords.cs
- MdiWindowListStrip.cs
- XamlToRtfWriter.cs
- ApplicationSettingsBase.cs
- FontStyles.cs
- Pair.cs
- EventWaitHandle.cs
- QueryCacheKey.cs
- FieldBuilder.cs
- MimePart.cs
- COM2FontConverter.cs
- SelectingProviderEventArgs.cs
- Matrix3DValueSerializer.cs
- HybridObjectCache.cs
- OleServicesContext.cs
- AppDomainFactory.cs
- HitTestResult.cs
- Renderer.cs
- CommentEmitter.cs
- FormViewUpdatedEventArgs.cs
- ControlBuilder.cs
- ResourcesBuildProvider.cs
- CompilerState.cs
- Automation.cs
- TypeReference.cs
- SiteMapDataSource.cs
- OptimizedTemplateContentHelper.cs
- ServiceAuthorizationBehavior.cs
- TableAutomationPeer.cs
- TextAnchor.cs
- EncodedStreamFactory.cs
- TypeConverterHelper.cs
- DateTimeOffset.cs
- DesignerFrame.cs
- FrameworkRichTextComposition.cs
- OrthographicCamera.cs
- HtmlSelectionListAdapter.cs
- PreviousTrackingServiceAttribute.cs
- PageBreakRecord.cs
- WaitHandleCannotBeOpenedException.cs
- InvalidOleVariantTypeException.cs
- Message.cs
- ScrollChrome.cs
- DigestComparer.cs
- RegistrySecurity.cs
- OleDbInfoMessageEvent.cs
- JavaScriptObjectDeserializer.cs
- ZipIOBlockManager.cs
- DebugInfoGenerator.cs
- ClientTargetSection.cs
- JsonSerializer.cs
- InheritablePropertyChangeInfo.cs
- CreateUserErrorEventArgs.cs
- SqlDataSourceFilteringEventArgs.cs
- XmlReflectionImporter.cs
- HttpApplication.cs
- CalendarAutoFormat.cs
- datacache.cs
- UnauthorizedAccessException.cs
- AuditLevel.cs
- WebPageTraceListener.cs
- ValueUnavailableException.cs
- Int32AnimationUsingKeyFrames.cs
- DelayLoadType.cs