Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / RegularExpressionValidator.cs / 1305376 / RegularExpressionValidator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI.WebControls { using System.ComponentModel; using System.ComponentModel.Design; using System.Text.RegularExpressions; using System.Drawing.Design; using System.Web; using System.Web.Util; ////// [ ToolboxData("<{0}:RegularExpressionValidator runat=\"server\" ErrorMessage=\"RegularExpressionValidator\">{0}:RegularExpressionValidator>") ] public class RegularExpressionValidator : BaseValidator { ///Checks if the value of the associated input control matches the pattern /// of a regular expression. ////// [ WebCategory("Behavior"), Themeable(false), DefaultValue(""), Editor("System.Web.UI.Design.WebControls.RegexTypeEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor)), WebSysDescription(SR.RegularExpressionValidator_ValidationExpression) ] public string ValidationExpression { get { object o = ViewState["ValidationExpression"]; return((o == null) ? String.Empty : (string)o); } set { try { Regex.IsMatch(String.Empty, value); } catch (Exception e) { throw new HttpException( SR.GetString(SR.Validator_bad_regex, value), e); } ViewState["ValidationExpression"] = value; } } ///Indicates the regular expression assigned to be the validation criteria. ////// /// 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", "RegularExpressionValidatorEvaluateIsValid", false); if (ValidationExpression.Length > 0) { AddExpandoAttribute(expandoAttributeWriter, id, "validationexpression", ValidationExpression); } } } ////// /// EvaluateIsValid method /// protected override bool EvaluateIsValid() { // Always succeeds if input is empty or value was not found string controlValue = GetControlValidationValue(ControlToValidate); Debug.Assert(controlValue != null, "Should have already been checked"); if (controlValue == null || controlValue.Trim().Length == 0) { return true; } try { // we are looking for an exact match, not just a search hit Match m = Regex.Match(controlValue, ValidationExpression); return(m.Success && m.Index == 0 && m.Length == controlValue.Length); } catch { Debug.Fail("Regex error should have been caught in property setter."); return true; } } } } // 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.ComponentModel.Design; using System.Text.RegularExpressions; using System.Drawing.Design; using System.Web; using System.Web.Util; ////// [ ToolboxData("<{0}:RegularExpressionValidator runat=\"server\" ErrorMessage=\"RegularExpressionValidator\">{0}:RegularExpressionValidator>") ] public class RegularExpressionValidator : BaseValidator { ///Checks if the value of the associated input control matches the pattern /// of a regular expression. ////// [ WebCategory("Behavior"), Themeable(false), DefaultValue(""), Editor("System.Web.UI.Design.WebControls.RegexTypeEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor)), WebSysDescription(SR.RegularExpressionValidator_ValidationExpression) ] public string ValidationExpression { get { object o = ViewState["ValidationExpression"]; return((o == null) ? String.Empty : (string)o); } set { try { Regex.IsMatch(String.Empty, value); } catch (Exception e) { throw new HttpException( SR.GetString(SR.Validator_bad_regex, value), e); } ViewState["ValidationExpression"] = value; } } ///Indicates the regular expression assigned to be the validation criteria. ////// /// 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", "RegularExpressionValidatorEvaluateIsValid", false); if (ValidationExpression.Length > 0) { AddExpandoAttribute(expandoAttributeWriter, id, "validationexpression", ValidationExpression); } } } ////// /// EvaluateIsValid method /// protected override bool EvaluateIsValid() { // Always succeeds if input is empty or value was not found string controlValue = GetControlValidationValue(ControlToValidate); Debug.Assert(controlValue != null, "Should have already been checked"); if (controlValue == null || controlValue.Trim().Length == 0) { return true; } try { // we are looking for an exact match, not just a search hit Match m = Regex.Match(controlValue, ValidationExpression); return(m.Success && m.Index == 0 && m.Length == controlValue.Length); } catch { Debug.Fail("Regex error should have been caught in property setter."); return true; } } } } // 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
- XmlDocumentSchema.cs
- XhtmlBasicCommandAdapter.cs
- StructuralType.cs
- AccessDataSourceView.cs
- JsonQueryStringConverter.cs
- RuntimeConfigurationRecord.cs
- DispatcherTimer.cs
- DataGridAutoFormatDialog.cs
- NativeMethods.cs
- XpsFilter.cs
- List.cs
- TaskDesigner.cs
- TransactionInformation.cs
- ProfileService.cs
- KeyValueInternalCollection.cs
- ScrollBar.cs
- KeyEventArgs.cs
- ConnectionOrientedTransportBindingElement.cs
- XmlWhitespace.cs
- DetailsViewRowCollection.cs
- XmlWrappingReader.cs
- FixedSOMTextRun.cs
- _LocalDataStoreMgr.cs
- Logging.cs
- GroupBox.cs
- ManifestResourceInfo.cs
- CharStorage.cs
- XmlSchemaAnnotation.cs
- WizardForm.cs
- PageContent.cs
- UiaCoreTypesApi.cs
- DataGridParentRows.cs
- BuildResultCache.cs
- DuplicateWaitObjectException.cs
- EastAsianLunisolarCalendar.cs
- SecurityTokenResolver.cs
- MetadataException.cs
- DecimalAnimation.cs
- FactoryMaker.cs
- HashJoinQueryOperatorEnumerator.cs
- SecurityUniqueId.cs
- ActiveDocumentEvent.cs
- FlowDocumentReaderAutomationPeer.cs
- DomainConstraint.cs
- ClientOptions.cs
- EditorZoneAutoFormat.cs
- ColorConvertedBitmap.cs
- ProfileEventArgs.cs
- XmlPreloadedResolver.cs
- PrivateFontCollection.cs
- X509SecurityTokenParameters.cs
- HttpCookie.cs
- RangeValueProviderWrapper.cs
- MetadataCollection.cs
- ClrProviderManifest.cs
- DataComponentMethodGenerator.cs
- PageBuildProvider.cs
- ToolStripScrollButton.cs
- BaseDataBoundControlDesigner.cs
- DataRelationPropertyDescriptor.cs
- PageOutputColor.cs
- ClientData.cs
- Trace.cs
- CodeNamespaceImportCollection.cs
- PaintEvent.cs
- ViewGenerator.cs
- LineBreak.cs
- ScrollViewerAutomationPeer.cs
- XmlWriterTraceListener.cs
- mediaeventargs.cs
- UnauthorizedAccessException.cs
- WebPartCatalogCloseVerb.cs
- HtmlLabelAdapter.cs
- ScrollItemProviderWrapper.cs
- HtmlInputSubmit.cs
- CodeRegionDirective.cs
- IntSecurity.cs
- BindableTemplateBuilder.cs
- ProcessingInstructionAction.cs
- SynthesizerStateChangedEventArgs.cs
- CodeGeneratorOptions.cs
- UIElementAutomationPeer.cs
- WebMessageEncoderFactory.cs
- OracleDataAdapter.cs
- MatrixValueSerializer.cs
- TaiwanLunisolarCalendar.cs
- Selection.cs
- XmlMemberMapping.cs
- IProducerConsumerCollection.cs
- BufferedWebEventProvider.cs
- Point3DCollection.cs
- OletxEnlistment.cs
- MenuItem.cs
- EntityDataSourceSelectingEventArgs.cs
- OdbcUtils.cs
- FrameworkContentElementAutomationPeer.cs
- LocalizableAttribute.cs
- BindingContext.cs
- XmlBoundElement.cs
- WebPartManager.cs