Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlInputPassword.cs / 1 / HtmlInputPassword.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * HtmlInputPassword.cs * * Copyright (c) 2000 Microsoft Corporation */ namespace System.Web.UI.HtmlControls { using System.ComponentModel; using System; using System.Collections; using System.Collections.Specialized; using System.Globalization; using System.Web; using System.Web.UI; using System.Security.Permissions; ////// [ DefaultEvent("ServerChange"), ValidationProperty("Value"), SupportsEventValidation, ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class HtmlInputPassword : HtmlInputText, IPostBackDataHandler { private static readonly object EventServerChange = new object(); /* * Creates an intrinsic Html INPUT type=password control. */ public HtmlInputPassword() : base("password") { } protected override void RenderAttributes(HtmlTextWriter writer) { // Remove value from viewstate for input type=password ViewState.Remove("value"); base.RenderAttributes(writer); } } }/// The ////// class defines the methods, properties, and events for the HtmlInputPassword server /// control. This class allows programmatic access to the HTML <input type= /// text> /// and <input type= /// password> elements on the server. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DbSourceCommand.cs
- SqlTopReducer.cs
- SoapCommonClasses.cs
- MultiPageTextView.cs
- Effect.cs
- Soap11ServerProtocol.cs
- Set.cs
- EnumerableRowCollectionExtensions.cs
- CalendarModeChangedEventArgs.cs
- PropertyChangingEventArgs.cs
- PersonalizationStateInfoCollection.cs
- PrivacyNoticeBindingElement.cs
- BatchParser.cs
- RegexFCD.cs
- CodeAttachEventStatement.cs
- AuthorizationRule.cs
- DataStreams.cs
- EventManager.cs
- IndexerNameAttribute.cs
- SqlReferenceCollection.cs
- CaseInsensitiveHashCodeProvider.cs
- HWStack.cs
- CellPartitioner.cs
- DuplicateDetector.cs
- StringDictionaryWithComparer.cs
- BuildResult.cs
- ToolStripKeyboardHandlingService.cs
- StateBag.cs
- EastAsianLunisolarCalendar.cs
- DataGridViewButtonColumn.cs
- DataSourceControl.cs
- SafeSecurityHandles.cs
- MenuItemCollection.cs
- SettingsPropertyCollection.cs
- XmlAnyElementAttributes.cs
- Rotation3D.cs
- EmptyControlCollection.cs
- ListViewSortEventArgs.cs
- LocatorGroup.cs
- DataGridViewSelectedColumnCollection.cs
- Zone.cs
- JsonServiceDocumentSerializer.cs
- CodeIdentifier.cs
- DataError.cs
- NegotiateStream.cs
- PackUriHelper.cs
- DataGridViewCellStyleConverter.cs
- PolygonHotSpot.cs
- PkcsMisc.cs
- Wildcard.cs
- AccessControlEntry.cs
- SerializationEventsCache.cs
- _NestedMultipleAsyncResult.cs
- SettingsContext.cs
- WorkflowOwnershipException.cs
- DocumentOrderQuery.cs
- GroupBoxAutomationPeer.cs
- OuterGlowBitmapEffect.cs
- BufferBuilder.cs
- ObjectIDGenerator.cs
- ErrorLog.cs
- XmlAttributeCollection.cs
- Point3DValueSerializer.cs
- SBCSCodePageEncoding.cs
- FieldNameLookup.cs
- CapabilitiesSection.cs
- Stacktrace.cs
- X509PeerCertificateAuthenticationElement.cs
- HandlerBase.cs
- WebPartDisplayMode.cs
- TextSelectionProcessor.cs
- MethodCallTranslator.cs
- VirtualDirectoryMappingCollection.cs
- Inflater.cs
- FullTrustAssembliesSection.cs
- OdbcConnectionOpen.cs
- InstanceData.cs
- ListViewItem.cs
- UrlMappingCollection.cs
- AttributeSetAction.cs
- XmlWhitespace.cs
- DragStartedEventArgs.cs
- PageDeviceFont.cs
- DescendantBaseQuery.cs
- X509LogoTypeExtension.cs
- GroupByExpressionRewriter.cs
- DockingAttribute.cs
- NonDualMessageSecurityOverHttp.cs
- Int64.cs
- FixedPageStructure.cs
- ListMarkerLine.cs
- DbgUtil.cs
- basemetadatamappingvisitor.cs
- TopClause.cs
- TypeRefElement.cs
- BufferAllocator.cs
- ExternalException.cs
- DataSourceControlBuilder.cs
- Attributes.cs
- Operator.cs