Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / Design / BaseValidatorDesigner.cs / 1305376 / BaseValidatorDesigner.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.MobileControls { using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.IO; using System.Web.UI; using System.Web.UI.Design; using System.Web.UI.WebControls; using System.Web.UI.MobileControls.Adapters; using System.Web.UI.Design.MobileControls.Adapters; ////// [ System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode) ] [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.")] internal class BaseValidatorDesigner : MobileControlDesigner { private System.Web.UI.MobileControls.BaseValidator _baseValidator; ////// Provides /// a designer for controls derived from ValidatorBase. /// ////// /// /// The control element being designed. /// ////// Initializes the designer. /// ////// ////// This is called by the designer host to establish the component being /// designed. /// ///public override void Initialize(IComponent component) { Debug.Assert(component is System.Web.UI.MobileControls.BaseValidator, "BaseValidatorDesigner.Initialize - Invalid BaseValidator Control"); _baseValidator = (System.Web.UI.MobileControls.BaseValidator) component; base.Initialize(component); // remove the contained asp validator within mobile validator so that it won't // be persisted. for (int i = _baseValidator.Controls.Count - 1; i >= 0; i--) { Control child = _baseValidator.Controls[i]; if (child is System.Web.UI.WebControls.BaseValidator) { _baseValidator.Controls.RemoveAt(i); } } } /// /// ////// Gets the design time HTML of ValidatorBase controls. /// ////// protected override String GetDesignTimeNormalHtml() { Debug.Assert(_baseValidator.Text != null); String originalText = _baseValidator.ErrorMessage; ValidatorDisplay validatorDisplay = _baseValidator.Display; bool blankText = (validatorDisplay == ValidatorDisplay.None || (originalText.Trim().Length == 0 && _baseValidator.Text.Trim().Length == 0)); if (blankText) { _baseValidator.ErrorMessage = "[" + _baseValidator.ID + "]"; } DesignerTextWriter tw = new DesignerTextWriter(); _baseValidator.Adapter.Render(tw); if (blankText) { _baseValidator.ErrorMessage = originalText; } return tw.ToString(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// The design time /// HTML of the control. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.MobileControls { using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.IO; using System.Web.UI; using System.Web.UI.Design; using System.Web.UI.WebControls; using System.Web.UI.MobileControls.Adapters; using System.Web.UI.Design.MobileControls.Adapters; ////// [ System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode) ] [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.")] internal class BaseValidatorDesigner : MobileControlDesigner { private System.Web.UI.MobileControls.BaseValidator _baseValidator; ////// Provides /// a designer for controls derived from ValidatorBase. /// ////// /// /// The control element being designed. /// ////// Initializes the designer. /// ////// ////// This is called by the designer host to establish the component being /// designed. /// ///public override void Initialize(IComponent component) { Debug.Assert(component is System.Web.UI.MobileControls.BaseValidator, "BaseValidatorDesigner.Initialize - Invalid BaseValidator Control"); _baseValidator = (System.Web.UI.MobileControls.BaseValidator) component; base.Initialize(component); // remove the contained asp validator within mobile validator so that it won't // be persisted. for (int i = _baseValidator.Controls.Count - 1; i >= 0; i--) { Control child = _baseValidator.Controls[i]; if (child is System.Web.UI.WebControls.BaseValidator) { _baseValidator.Controls.RemoveAt(i); } } } /// /// ////// Gets the design time HTML of ValidatorBase controls. /// ////// protected override String GetDesignTimeNormalHtml() { Debug.Assert(_baseValidator.Text != null); String originalText = _baseValidator.ErrorMessage; ValidatorDisplay validatorDisplay = _baseValidator.Display; bool blankText = (validatorDisplay == ValidatorDisplay.None || (originalText.Trim().Length == 0 && _baseValidator.Text.Trim().Length == 0)); if (blankText) { _baseValidator.ErrorMessage = "[" + _baseValidator.ID + "]"; } DesignerTextWriter tw = new DesignerTextWriter(); _baseValidator.Adapter.Render(tw); if (blankText) { _baseValidator.ErrorMessage = originalText; } return tw.ToString(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// The design time /// HTML of the control. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RegexFCD.cs
- QuaternionAnimationBase.cs
- NominalTypeEliminator.cs
- TextAnchor.cs
- MetadataArtifactLoaderResource.cs
- Component.cs
- WebPartVerbCollection.cs
- SqlDataRecord.cs
- JsonClassDataContract.cs
- AutomationProperties.cs
- DataGridViewComboBoxColumnDesigner.cs
- RootAction.cs
- PrivacyNoticeElement.cs
- SmtpException.cs
- RegexRunnerFactory.cs
- ResourcesChangeInfo.cs
- HttpBindingExtension.cs
- BitmapEffectInput.cs
- SqlServices.cs
- LayoutTable.cs
- DataControlImageButton.cs
- XmlSerializerFactory.cs
- CacheEntry.cs
- SectionInformation.cs
- ExpressionBindingsDialog.cs
- EnterpriseServicesHelper.cs
- SpellerInterop.cs
- TransformValueSerializer.cs
- CodeGenerator.cs
- FrameworkContentElement.cs
- DetailsViewPagerRow.cs
- TableSectionStyle.cs
- StaticFileHandler.cs
- SecureStringHasher.cs
- DataServiceRequestException.cs
- ReaderWriterLock.cs
- ProxyWebPartManager.cs
- ByteRangeDownloader.cs
- EntitySqlException.cs
- MimeFormImporter.cs
- DPCustomTypeDescriptor.cs
- BrowserCapabilitiesCompiler.cs
- StyleCollection.cs
- IdentityHolder.cs
- BinaryParser.cs
- BaseHashHelper.cs
- ContextStack.cs
- XmlTextWriter.cs
- EntityChangedParams.cs
- ExtenderControl.cs
- ValueChangedEventManager.cs
- QilIterator.cs
- ProjectionPruner.cs
- CodeFieldReferenceExpression.cs
- Directory.cs
- WindowProviderWrapper.cs
- Parser.cs
- AutomationInteropProvider.cs
- Point.cs
- BinaryObjectWriter.cs
- AffineTransform3D.cs
- FormattedTextSymbols.cs
- SystemColorTracker.cs
- ServerIdentity.cs
- Matrix3D.cs
- EventMap.cs
- WebControl.cs
- DataRecordInternal.cs
- Lease.cs
- UserPreferenceChangedEventArgs.cs
- WebPartConnectionsDisconnectVerb.cs
- VirtualizingPanel.cs
- BulletedList.cs
- FirstMatchCodeGroup.cs
- WinInet.cs
- LinkTarget.cs
- ObjectConverter.cs
- DataGridViewCellValidatingEventArgs.cs
- TableItemStyle.cs
- LocalizedNameDescriptionPair.cs
- ResourceWriter.cs
- DirectionalLight.cs
- Accessible.cs
- TemplatePropertyEntry.cs
- SplayTreeNode.cs
- RTLAwareMessageBox.cs
- SmtpNtlmAuthenticationModule.cs
- ProcessHostConfigUtils.cs
- StyleHelper.cs
- Component.cs
- PerspectiveCamera.cs
- RealizationContext.cs
- TypedTableBase.cs
- CapiNative.cs
- Stack.cs
- PageSetupDialog.cs
- SqlConnectionHelper.cs
- ToolStripArrowRenderEventArgs.cs
- RuntimeConfigurationRecord.cs
- StringAttributeCollection.cs