Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlInputReset.cs / 2 / HtmlInputReset.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * HtmlInputReset.cs * * Copyright (c) 2000 Microsoft Corporation */ using System.ComponentModel; using System.Security.Permissions; namespace System.Web.UI.HtmlControls { // [DefaultEvent("")] [SupportsEventValidation] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class HtmlInputReset : HtmlInputButton { /* * Creates an intrinsic Html INPUT type=reset control. */ ////// public HtmlInputReset() : base("reset") { } /* * Creates an intrinsic Html INPUT type=reset control. */ ///Initializes a new instance of a ///class using /// default values. /// public HtmlInputReset(string type) : base(type) { } [ Browsable(false), EditorBrowsable(EditorBrowsableState.Never) ] public override bool CausesValidation { get { return base.CausesValidation; } set { base.CausesValidation = value; } } [ Browsable(false), EditorBrowsable(EditorBrowsableState.Never) ] public override string ValidationGroup { get { return base.ValidationGroup; } set { base.ValidationGroup = value; } } [ Browsable(false), EditorBrowsable(EditorBrowsableState.Never) ] public new event EventHandler ServerClick { add { base.ServerClick += value; } remove { base.ServerClick -= value; } } internal override void RenderAttributesInternal(HtmlTextWriter writer) { // We didn't generate any server event for reset button in older version } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Initializes a new instance of a ///class using the /// specified string.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebServiceReceiveDesigner.cs
- ACL.cs
- SqlUdtInfo.cs
- AcceleratedTokenProvider.cs
- EventLogPermissionEntry.cs
- PathFigureCollection.cs
- XmlSiteMapProvider.cs
- SystemKeyConverter.cs
- ElapsedEventArgs.cs
- UrlMapping.cs
- DefaultBinder.cs
- CorrelationTokenInvalidatedHandler.cs
- SoapConverter.cs
- TraceSwitch.cs
- ResolveDuplexCD1AsyncResult.cs
- NativeMethods.cs
- TypeBuilderInstantiation.cs
- StreamWriter.cs
- ColumnCollection.cs
- HttpListenerContext.cs
- EventTrigger.cs
- TreeIterators.cs
- complextypematerializer.cs
- DesignerUtils.cs
- SystemNetHelpers.cs
- Event.cs
- MachineKeySection.cs
- ChangeBlockUndoRecord.cs
- Helpers.cs
- ProfileGroupSettingsCollection.cs
- SelectedDatesCollection.cs
- SatelliteContractVersionAttribute.cs
- DataGridViewCheckBoxCell.cs
- XmlSchemaAnyAttribute.cs
- PrimitiveDataContract.cs
- EmbeddedObject.cs
- EntityDataSourceMemberPath.cs
- PhoneCall.cs
- storepermission.cs
- DeviceSpecificChoice.cs
- ConfigurationErrorsException.cs
- XmlTypeMapping.cs
- FunctionQuery.cs
- CallSite.cs
- XmlRawWriter.cs
- XmlUtil.cs
- GridViewAutomationPeer.cs
- WindowsIdentity.cs
- DllNotFoundException.cs
- _AuthenticationState.cs
- BindStream.cs
- OptionalColumn.cs
- CodePrimitiveExpression.cs
- WindowsGraphicsCacheManager.cs
- ContentFileHelper.cs
- EncodingInfo.cs
- PageCatalogPart.cs
- StateRuntime.cs
- LinkClickEvent.cs
- XmlSchemaAnyAttribute.cs
- TextBoxBase.cs
- ManagedWndProcTracker.cs
- ComplexPropertyEntry.cs
- PtsPage.cs
- FunctionNode.cs
- SqlDataSourceStatusEventArgs.cs
- ConfigViewGenerator.cs
- UrlMappingsModule.cs
- UInt32.cs
- MediaElementAutomationPeer.cs
- Emitter.cs
- cache.cs
- MenuStrip.cs
- ManifestResourceInfo.cs
- DocumentXPathNavigator.cs
- LocalTransaction.cs
- EmptyEnumerable.cs
- HtmlElement.cs
- DataSourceCache.cs
- JsonGlobals.cs
- XmlName.cs
- SortQuery.cs
- VirtualDirectoryMapping.cs
- BindingList.cs
- DbDeleteCommandTree.cs
- SystemWebSectionGroup.cs
- FormsAuthenticationModule.cs
- BinaryUtilClasses.cs
- RuntimeVariableList.cs
- ImageFormat.cs
- WorkflowInstanceContextProvider.cs
- _NegoStream.cs
- HtmlFormWrapper.cs
- TypedElement.cs
- DateTimeHelper.cs
- PlatformNotSupportedException.cs
- HeaderLabel.cs
- odbcmetadatacolumnnames.cs
- TransactionsSectionGroup.cs
- XmlComplianceUtil.cs