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;
///
/// Checks if the value of the associated input control matches the pattern
/// of a regular expression.
///
[
ToolboxData("<{0}:RegularExpressionValidator runat=\"server\" ErrorMessage=\"RegularExpressionValidator\">{0}:RegularExpressionValidator>")
]
public class RegularExpressionValidator : BaseValidator {
///
/// Indicates the regular expression assigned to be the validation criteria.
///
[
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;
}
}
///
///
/// 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;
///
/// Checks if the value of the associated input control matches the pattern
/// of a regular expression.
///
[
ToolboxData("<{0}:RegularExpressionValidator runat=\"server\" ErrorMessage=\"RegularExpressionValidator\">{0}:RegularExpressionValidator>")
]
public class RegularExpressionValidator : BaseValidator {
///
/// Indicates the regular expression assigned to be the validation criteria.
///
[
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;
}
}
///
///
/// 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
- ComponentChangedEvent.cs
- SelectionPattern.cs
- ConstraintStruct.cs
- PtsPage.cs
- BinaryConverter.cs
- FileFormatException.cs
- ActiveXSite.cs
- XmlCustomFormatter.cs
- DES.cs
- DataContract.cs
- XmlNamedNodeMap.cs
- ExternalException.cs
- CacheSection.cs
- ServiceCredentials.cs
- MaskedTextBox.cs
- SimpleExpression.cs
- StylusCollection.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- ApplicationInfo.cs
- DebugView.cs
- hebrewshape.cs
- GenerateTemporaryTargetAssembly.cs
- BlockCollection.cs
- UserControlBuildProvider.cs
- RoutedPropertyChangedEventArgs.cs
- ClientOperationFormatterProvider.cs
- Rectangle.cs
- DtrList.cs
- RoutedEventConverter.cs
- DataRow.cs
- Icon.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- Transactions.cs
- SynchronizationLockException.cs
- AsyncOperation.cs
- SqlInternalConnection.cs
- ReverseInheritProperty.cs
- TemplateBindingExtensionConverter.cs
- TargetPerspective.cs
- BooleanFunctions.cs
- PropertyDescriptor.cs
- ReadWriteObjectLock.cs
- StateChangeEvent.cs
- InternalConfigHost.cs
- ResourceType.cs
- DataStorage.cs
- TouchEventArgs.cs
- WebBaseEventKeyComparer.cs
- LoadMessageLogger.cs
- CompModHelpers.cs
- COM2ExtendedBrowsingHandler.cs
- StringCollectionMarkupSerializer.cs
- MatrixCamera.cs
- TypedColumnHandler.cs
- AppSecurityManager.cs
- Math.cs
- TransformationRules.cs
- WpfKnownType.cs
- HtmlLiteralTextAdapter.cs
- BitmapEffectGroup.cs
- Menu.cs
- CollectionViewProxy.cs
- IISMapPath.cs
- CompModSwitches.cs
- StrokeSerializer.cs
- UniqueIdentifierService.cs
- DecimalAnimation.cs
- Double.cs
- DefaultAutoFieldGenerator.cs
- XmlTextAttribute.cs
- SqlNamer.cs
- FacetValueContainer.cs
- ChannelBase.cs
- RNGCryptoServiceProvider.cs
- FixedSOMTableCell.cs
- XslCompiledTransform.cs
- AsymmetricSignatureDeformatter.cs
- SqlDataSourceTableQuery.cs
- MetadataArtifactLoaderCompositeFile.cs
- EditingCommands.cs
- RsaSecurityToken.cs
- CookieParameter.cs
- WorkflowInstance.cs
- ADMembershipProvider.cs
- LineInfo.cs
- HuffCodec.cs
- WebBrowserPermission.cs
- ResourcesChangeInfo.cs
- Normalization.cs
- DataPager.cs
- PagePropertiesChangingEventArgs.cs
- AuthorizationRuleCollection.cs
- Schema.cs
- CalendarDay.cs
- XmlTextReaderImplHelpers.cs
- TripleDESCryptoServiceProvider.cs
- IntellisenseTextBox.designer.cs
- TextTreeInsertElementUndoUnit.cs
- XmlTypeAttribute.cs
- _HeaderInfo.cs