Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlInputPassword.cs / 1305376 / 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, ] 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// 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
- Context.cs
- TagPrefixAttribute.cs
- Bits.cs
- DiagnosticsConfiguration.cs
- FollowerQueueCreator.cs
- DrawingState.cs
- CodeNamespaceImportCollection.cs
- ChildDocumentBlock.cs
- UrlMappingCollection.cs
- BinaryFormatter.cs
- SingleAnimationBase.cs
- KeyConstraint.cs
- RefType.cs
- ClientProtocol.cs
- HScrollBar.cs
- TimestampInformation.cs
- DecimalConstantAttribute.cs
- HandlerBase.cs
- FormViewRow.cs
- DataGridViewComboBoxCell.cs
- KnownTypesHelper.cs
- keycontainerpermission.cs
- BrowsableAttribute.cs
- IntegerValidatorAttribute.cs
- StringOutput.cs
- TabPage.cs
- RouteItem.cs
- SessionStateItemCollection.cs
- ComponentRenameEvent.cs
- DateTimeUtil.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- DbConnectionInternal.cs
- PathData.cs
- X509ScopedServiceCertificateElement.cs
- KeyPressEvent.cs
- CodeTypeParameterCollection.cs
- RSAOAEPKeyExchangeDeformatter.cs
- ProtocolsConfigurationHandler.cs
- XmlNamedNodeMap.cs
- validation.cs
- HtmlTextBoxAdapter.cs
- PageBreakRecord.cs
- ToolStripContentPanelRenderEventArgs.cs
- CryptoKeySecurity.cs
- TypeGeneratedEventArgs.cs
- ScopelessEnumAttribute.cs
- TextTreeFixupNode.cs
- DataServiceRequestOfT.cs
- RemotingException.cs
- Propagator.JoinPropagator.cs
- SingleAnimationUsingKeyFrames.cs
- WorkflowApplicationEventArgs.cs
- PolicyLevel.cs
- ErrorTableItemStyle.cs
- HttpClientCertificate.cs
- RelationshipConverter.cs
- CheckBoxList.cs
- UpdateTranslator.cs
- AmbiguousMatchException.cs
- ComponentChangingEvent.cs
- Vector.cs
- Rules.cs
- DesignerContextDescriptor.cs
- HttpApplication.cs
- WebPartEditorCancelVerb.cs
- GradientPanel.cs
- HebrewCalendar.cs
- TagPrefixCollection.cs
- HostingPreferredMapPath.cs
- mediaeventshelper.cs
- SortableBindingList.cs
- While.cs
- ComponentCommands.cs
- XmlNotation.cs
- CompositionAdorner.cs
- FixedNode.cs
- ImportContext.cs
- ChangeProcessor.cs
- TextRunTypographyProperties.cs
- OrCondition.cs
- WebBrowser.cs
- ThousandthOfEmRealDoubles.cs
- QueryCacheEntry.cs
- WebPartConnectionsConnectVerb.cs
- AttachedPropertyMethodSelector.cs
- ReferentialConstraint.cs
- shaperfactory.cs
- EncoderReplacementFallback.cs
- AsyncInvokeContext.cs
- NamedPipeTransportManager.cs
- XpsImage.cs
- SystemUnicastIPAddressInformation.cs
- TrackingMemoryStream.cs
- jithelpers.cs
- Pair.cs
- WebEventCodes.cs
- LockCookie.cs
- QueryInterceptorAttribute.cs
- XmlSchemaSimpleTypeRestriction.cs
- ToggleProviderWrapper.cs