Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / CustomValidator.cs / 1305376 / CustomValidator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.ComponentModel; using System.Web; using System.Web.Util; ////// [ DefaultEvent("ServerValidate"), ToolboxData("<{0}:CustomValidator runat=\"server\" ErrorMessage=\"CustomValidator\">{0}:CustomValidator>") ] public class CustomValidator : BaseValidator { private static readonly object EventServerValidate= new object(); ///Allows custom code to perform /// validation on the client and/or server. ////// [ WebCategory("Behavior"), Themeable(false), DefaultValue(""), WebSysDescription(SR.CustomValidator_ClientValidationFunction) ] public string ClientValidationFunction { get { object o = ViewState["ClientValidationFunction"]; return((o == null) ? String.Empty : (string)o); } set { ViewState["ClientValidationFunction"] = value; } } [ WebCategory("Behavior"), Themeable(false), DefaultValue(false), WebSysDescription(SR.CustomValidator_ValidateEmptyText), ] public bool ValidateEmptyText { get { object o = ViewState["ValidateEmptyText"]; return((o == null) ? false : (bool)o); } set { ViewState["ValidateEmptyText"] = value; } } ///Gets and sets the custom client Javascript function used /// for validation. ////// [ WebSysDescription(SR.CustomValidator_ServerValidate) ] public event ServerValidateEventHandler ServerValidate { add { Events.AddHandler(EventServerValidate, value); } remove { Events.RemoveHandler(EventServerValidate, value); } } ///Represents the method that will handle the /// ///event of a /// . /// /// protected override void AddAttributesToRender(HtmlTextWriter writer) { base.AddAttributesToRender(writer); if (RenderUplevel) { string id = ClientID; HtmlTextWriter expandoAttributeWriter = (EnableLegacyRendering) ? writer : null; AddExpandoAttribute(expandoAttributeWriter, id, "evaluationfunction", "CustomValidatorEvaluateIsValid", false); if (ClientValidationFunction.Length > 0) { AddExpandoAttribute(expandoAttributeWriter, id, "clientvalidationfunction", ClientValidationFunction); if (ValidateEmptyText) { AddExpandoAttribute(expandoAttributeWriter, id, "validateemptytext", "true", false); } } } } ///Adds the properties of the ///control to the /// output stream for rendering on the client. /// /// protected override bool ControlPropertiesValid() { // Need to override the BaseValidator implementation, because for CustomValidator, it is fine // for the ControlToValidate to be blank. string controlToValidate = ControlToValidate; if (controlToValidate.Length > 0) { // Check that the property points to a valid control. Will throw and exception if not found CheckControlValidationProperty(controlToValidate, "ControlToValidate"); } return true; } ///Checks the properties of the control for valid values. ////// /// EvaluateIsValid method /// protected override bool EvaluateIsValid() { // If no control is specified, we always fire the event. If they have specified a control, we // only fire the event if the input is non-blank. string controlValue = String.Empty; string controlToValidate = ControlToValidate; if (controlToValidate.Length > 0) { controlValue = GetControlValidationValue(controlToValidate); Debug.Assert(controlValue != null, "Should have been caught be property check"); // If the text is empty, we return true. Whitespace is ignored for coordination wiht // RequiredFieldValidator. if ((controlValue == null || controlValue.Trim().Length == 0) && !ValidateEmptyText) { return true; } } return OnServerValidate(controlValue); } ////// protected virtual bool OnServerValidate(string value) { ServerValidateEventHandler handler = (ServerValidateEventHandler)Events[EventServerValidate]; ServerValidateEventArgs args = new ServerValidateEventArgs(value, true); if (handler != null) { handler(this, args); return args.IsValid; } else { return true; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Raises the /// ///event for the .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DirtyTextRange.cs
- Parser.cs
- FlowDocumentPaginator.cs
- RedirectionProxy.cs
- PeerApplication.cs
- GlobalProxySelection.cs
- SqlInternalConnectionSmi.cs
- WebConfigurationHostFileChange.cs
- DbProviderSpecificTypePropertyAttribute.cs
- UseLicense.cs
- DateTimeFormatInfo.cs
- AmbientLight.cs
- ClientTarget.cs
- ToolStripScrollButton.cs
- TextBoxRenderer.cs
- DbConnectionHelper.cs
- AnonymousIdentificationSection.cs
- ProviderUtil.cs
- InputManager.cs
- TraceXPathNavigator.cs
- TableLayoutCellPaintEventArgs.cs
- HMACMD5.cs
- RemotingException.cs
- NativeRecognizer.cs
- ICspAsymmetricAlgorithm.cs
- AppLevelCompilationSectionCache.cs
- ColumnCollectionEditor.cs
- PromptBuilder.cs
- Int32AnimationBase.cs
- DbConnectionPoolGroupProviderInfo.cs
- AtlasWeb.Designer.cs
- SmiEventStream.cs
- KerberosSecurityTokenParameters.cs
- WebZoneDesigner.cs
- GridViewCommandEventArgs.cs
- AppDomainShutdownMonitor.cs
- GlyphRunDrawing.cs
- DataBindingsDialog.cs
- FilterableAttribute.cs
- LinkedDataMemberFieldEditor.cs
- WizardPanelChangingEventArgs.cs
- SymLanguageVendor.cs
- FormatVersion.cs
- ApplicationFileCodeDomTreeGenerator.cs
- _AuthenticationState.cs
- HealthMonitoringSectionHelper.cs
- EventLog.cs
- ChooseAction.cs
- SignedXml.cs
- JavascriptXmlWriterWrapper.cs
- SQLSingle.cs
- XmlHierarchicalDataSourceView.cs
- FontWeightConverter.cs
- RegexInterpreter.cs
- RijndaelManagedTransform.cs
- MenuScrollingVisibilityConverter.cs
- DataFormats.cs
- ServiceInfo.cs
- WebPartDisplayModeCancelEventArgs.cs
- MediaElement.cs
- BezierSegment.cs
- PersistenceProviderFactory.cs
- X509ChainElement.cs
- FixedHighlight.cs
- SafeEventLogReadHandle.cs
- HttpListenerException.cs
- BaseParser.cs
- BulletChrome.cs
- LinqDataView.cs
- basemetadatamappingvisitor.cs
- DocumentPropertiesDialog.cs
- X509CertificateRecipientServiceCredential.cs
- StructuralType.cs
- ColorInterpolationModeValidation.cs
- BaseValidatorDesigner.cs
- DocumentEventArgs.cs
- SafeLocalAllocation.cs
- StaticSiteMapProvider.cs
- Lease.cs
- StateWorkerRequest.cs
- DataGridViewSelectedColumnCollection.cs
- XmlEntityReference.cs
- connectionpool.cs
- ApplicationFileParser.cs
- WindowsScroll.cs
- DataGridViewButtonColumn.cs
- TextOutput.cs
- CacheAxisQuery.cs
- DefaultMemberAttribute.cs
- PropertyPathWorker.cs
- TdsParserSafeHandles.cs
- DynamicValidatorEventArgs.cs
- CalendarDataBindingHandler.cs
- GridViewDeletedEventArgs.cs
- IisTraceListener.cs
- UiaCoreApi.cs
- Helpers.cs
- FragmentQueryProcessor.cs
- RenderOptions.cs
- DataGridViewUtilities.cs