Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlInputPassword.cs / 2 / 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved./// 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
- QueryStringHandler.cs
- URI.cs
- TranslateTransform3D.cs
- UnsafeNativeMethods.cs
- LoaderAllocator.cs
- cookiecontainer.cs
- CodePageUtils.cs
- WmlPhoneCallAdapter.cs
- XPathBinder.cs
- AttributeQuery.cs
- DbConnectionPoolIdentity.cs
- NativeMethods.cs
- NullableConverter.cs
- ProxyHwnd.cs
- IntegerValidator.cs
- ObjectAnimationUsingKeyFrames.cs
- MarkupExtensionReturnTypeAttribute.cs
- WebPartConnectionsConfigureVerb.cs
- TagMapInfo.cs
- WSHttpBindingBase.cs
- NameValueFileSectionHandler.cs
- _AutoWebProxyScriptEngine.cs
- Rule.cs
- CssStyleCollection.cs
- SafeLocalMemHandle.cs
- DateBoldEvent.cs
- CompositionTarget.cs
- HttpListenerRequest.cs
- ServerValidateEventArgs.cs
- UDPClient.cs
- MemberMaps.cs
- CompilerWrapper.cs
- LogEntry.cs
- WorkflowTransactionService.cs
- XpsSerializationException.cs
- DESCryptoServiceProvider.cs
- XamlTreeBuilderBamlRecordWriter.cs
- SchemaMapping.cs
- ColumnClickEvent.cs
- AppearanceEditorPart.cs
- StateWorkerRequest.cs
- SignatureToken.cs
- XmlSchemaAnnotation.cs
- TargetConverter.cs
- SurrogateEncoder.cs
- LOSFormatter.cs
- FormViewInsertEventArgs.cs
- ThreadExceptionDialog.cs
- GridViewRowPresenterBase.cs
- CodeRemoveEventStatement.cs
- ListView.cs
- RestHandler.cs
- TrustLevelCollection.cs
- HeaderedItemsControl.cs
- EditorPart.cs
- DataTemplate.cs
- QueryTask.cs
- Compilation.cs
- SpeechUI.cs
- ConsoleCancelEventArgs.cs
- MiniModule.cs
- TableAutomationPeer.cs
- SourceChangedEventArgs.cs
- Icon.cs
- WindowsIdentity.cs
- KoreanLunisolarCalendar.cs
- RoutedEventArgs.cs
- FormatVersion.cs
- SystemIPInterfaceProperties.cs
- IisTraceWebEventProvider.cs
- figurelength.cs
- SafePointer.cs
- XmlSignificantWhitespace.cs
- UInt64Storage.cs
- StandardTransformFactory.cs
- OleTxTransactionInfo.cs
- PagesSection.cs
- PerformanceCounterPermissionAttribute.cs
- ExternalCalls.cs
- FilteredAttributeCollection.cs
- compensatingcollection.cs
- HeaderedContentControl.cs
- NopReturnReader.cs
- SspiSafeHandles.cs
- PageStatePersister.cs
- UriTemplateClientFormatter.cs
- StreamGeometryContext.cs
- RegexFCD.cs
- ByteStream.cs
- CodeSnippetTypeMember.cs
- XmlValidatingReaderImpl.cs
- CompilerResults.cs
- WorkflowInstanceUnhandledExceptionRecord.cs
- TemplateBindingExpressionConverter.cs
- PngBitmapDecoder.cs
- Repeater.cs
- SingletonInstanceContextProvider.cs
- ToolStripTextBox.cs
- CodeDirectiveCollection.cs
- Translator.cs