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
- ExpressionEditorAttribute.cs
- PenContext.cs
- DuplicateDetector.cs
- ResourceProviderFactory.cs
- Encoder.cs
- Error.cs
- SiteMembershipCondition.cs
- DataGridViewCellStateChangedEventArgs.cs
- ResizingMessageFilter.cs
- XmlBinaryWriter.cs
- IDQuery.cs
- Debugger.cs
- FunctionQuery.cs
- WCFBuildProvider.cs
- _DigestClient.cs
- EdmFunctionAttribute.cs
- RuleConditionDialog.cs
- MaskedTextProvider.cs
- InstanceNameConverter.cs
- StylusPointProperties.cs
- xmlsaver.cs
- DesignSurfaceServiceContainer.cs
- xmlfixedPageInfo.cs
- ProtocolViolationException.cs
- SQlBooleanStorage.cs
- DropShadowBitmapEffect.cs
- AffineTransform3D.cs
- HttpProfileGroupBase.cs
- AssemblyAssociatedContentFileAttribute.cs
- EventLogger.cs
- CircleHotSpot.cs
- CodeDomSerializerException.cs
- XmlWhitespace.cs
- SynchronizationLockException.cs
- ConstantSlot.cs
- Comparer.cs
- Codec.cs
- DoubleUtil.cs
- CheckBoxList.cs
- XhtmlStyleClass.cs
- CodeBinaryOperatorExpression.cs
- TransformedBitmap.cs
- DrawingBrush.cs
- UriTemplateTrieNode.cs
- PaperSize.cs
- StateWorkerRequest.cs
- CaseStatement.cs
- UnmanagedHandle.cs
- HelpEvent.cs
- ButtonBase.cs
- Int64AnimationUsingKeyFrames.cs
- MouseEvent.cs
- DesignerOptions.cs
- ProcessHostMapPath.cs
- X509ChainElement.cs
- ModelTreeEnumerator.cs
- ProgressBarHighlightConverter.cs
- VirtualDirectoryMapping.cs
- BinaryNode.cs
- UDPClient.cs
- recordstatescratchpad.cs
- CatchBlock.cs
- CodePageEncoding.cs
- WebPartAuthorizationEventArgs.cs
- ExpressionParser.cs
- PngBitmapEncoder.cs
- PenContexts.cs
- MasterPageParser.cs
- StructuredType.cs
- PointLight.cs
- NotCondition.cs
- TextParaClient.cs
- ClosureBinding.cs
- DriveNotFoundException.cs
- EntityWrapper.cs
- PlainXmlWriter.cs
- ChangeNode.cs
- RootBrowserWindowProxy.cs
- SecurityContext.cs
- WebSysDefaultValueAttribute.cs
- BamlTreeNode.cs
- ColumnCollection.cs
- HandlerWithFactory.cs
- ClientRoleProvider.cs
- RestClientProxyHandler.cs
- ScopedMessagePartSpecification.cs
- LOSFormatter.cs
- Bidi.cs
- SerializationTrace.cs
- _ProxyRegBlob.cs
- StandardToolWindows.cs
- GridLengthConverter.cs
- BitmapEffectInputData.cs
- GridViewRowEventArgs.cs
- XmlImplementation.cs
- Drawing.cs
- Geometry.cs
- SequenceQuery.cs
- SmtpNtlmAuthenticationModule.cs
- Point4DConverter.cs