Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / RequiredFieldValidator.cs / 1305376 / RequiredFieldValidator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Drawing; using System.Web; using System.Web.UI; using System.Web.UI.Design.WebControls; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using WebCntrls = System.Web.UI.WebControls; using System.Security.Permissions; namespace System.Web.UI.MobileControls { /* * Mobile RequiredFieldValidator class. * The RequiredFieldValidator makes the input control it is associated with * a required field. Validation fails if the value of the input control is * no different from its initial value. * * Copyright (c) 2000 Microsoft Corporation */ ///[ ToolboxData("<{0}:RequiredFieldValidator runat=\"server\" ErrorMessage=\"RequiredFieldValidator\">{0}:RequiredFieldValidator>"), ToolboxItem("System.Web.UI.Design.WebControlToolboxItem, " + AssemblyRef.SystemDesign) ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] public class RequiredFieldValidator : BaseValidator { private WebCntrls.RequiredFieldValidator _webRequiredFieldValidator; /// protected override WebCntrls.BaseValidator CreateWebValidator() { _webRequiredFieldValidator = new WebCntrls.RequiredFieldValidator(); return _webRequiredFieldValidator; } //////////////////////////////////////////////////////////////////////// // Mimic the properties exposed in the original RequiredFieldValidator. // The properties are got and set directly from the original RequiredFieldValidator. //////////////////////////////////////////////////////////////////////// /// [ Bindable(true), DefaultValue(""), MobileCategory(SR.Category_Behavior), MobileSysDescription(SR.RequiredFieldValidator_InitialValue) ] public String InitialValue { get { return _webRequiredFieldValidator.InitialValue; } set { _webRequiredFieldValidator.InitialValue = value; } } /// protected override bool EvaluateIsValid() { return EvaluateIsValidInternal(); } } } // 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
- KeyEvent.cs
- GetPageCompletedEventArgs.cs
- DropTarget.cs
- PropertyPath.cs
- StringConverter.cs
- ProcessInputEventArgs.cs
- PropertyReference.cs
- LicFileLicenseProvider.cs
- ToolStripGripRenderEventArgs.cs
- QueryReaderSettings.cs
- SqlProviderUtilities.cs
- hresults.cs
- ScrollChangedEventArgs.cs
- ReadOnlyDictionary.cs
- DeclaredTypeValidator.cs
- Regex.cs
- EmptyQuery.cs
- IntegrationExceptionEventArgs.cs
- autovalidator.cs
- OrCondition.cs
- CodeSnippetExpression.cs
- ListView.cs
- CipherData.cs
- DataGridCell.cs
- TimeoutException.cs
- AvTraceDetails.cs
- PropertyDescriptorGridEntry.cs
- SessionIDManager.cs
- IndexedString.cs
- StylusPointCollection.cs
- ChtmlTextWriter.cs
- BlurBitmapEffect.cs
- CultureTableRecord.cs
- CacheDependency.cs
- Scheduling.cs
- RegexRunner.cs
- OleDbMetaDataFactory.cs
- SchemaConstraints.cs
- Transactions.cs
- UshortList2.cs
- TableCellCollection.cs
- recordstatefactory.cs
- GlyphInfoList.cs
- FastPropertyAccessor.cs
- CodeAttributeDeclarationCollection.cs
- AssociationSetMetadata.cs
- EFDataModelProvider.cs
- SafeIUnknown.cs
- XPathNodeIterator.cs
- XmlWellformedWriterHelpers.cs
- AutomationProperty.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- MsdtcWrapper.cs
- TrackingServices.cs
- WsatServiceCertificate.cs
- Tracking.cs
- ReverseComparer.cs
- LoginUtil.cs
- CollectionConverter.cs
- ClientTarget.cs
- ComplexTypeEmitter.cs
- WebRequest.cs
- NamespaceEmitter.cs
- WebPartVerbsEventArgs.cs
- ExceptionUtil.cs
- CallContext.cs
- ListDictionary.cs
- Error.cs
- SvcMapFile.cs
- SubclassTypeValidator.cs
- SqlFactory.cs
- FormatConvertedBitmap.cs
- Model3D.cs
- EntityStoreSchemaFilterEntry.cs
- Base64Encoding.cs
- DeferredElementTreeState.cs
- MenuStrip.cs
- ActivityCodeGenerator.cs
- _NetRes.cs
- WindowsImpersonationContext.cs
- ProxyWebPartManager.cs
- DataObjectAttribute.cs
- RelatedEnd.cs
- FunctionUpdateCommand.cs
- Help.cs
- SelectorAutomationPeer.cs
- HeaderedItemsControl.cs
- LoginView.cs
- OutputCacheProfile.cs
- UserNamePasswordValidationMode.cs
- RelationshipDetailsRow.cs
- CodeTypeConstructor.cs
- SystemResources.cs
- dataSvcMapFileLoader.cs
- Stopwatch.cs
- BinaryParser.cs
- ViewStateModeByIdAttribute.cs
- SystemInfo.cs
- DataSetUtil.cs
- Dictionary.cs