Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlInputSubmit.cs / 1305376 / HtmlInputSubmit.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * HtmlInputSubmit.cs * * Copyright (c) 2000 Microsoft Corporation */ namespace System.Web.UI.HtmlControls { using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Web; using System.Web.UI; using System.Globalization; using System.Security.Permissions; ////// [ DefaultEvent("ServerClick"), SupportsEventValidation, ] public class HtmlInputSubmit : HtmlInputButton, IPostBackEventHandler { /* * Creates an intrinsic Html INPUT type=submit control. */ ////// The ///class defines the methods, /// properties, and events for the HTML Input Button control. This class allows /// programmatic access to the HTML <input type= /// button>, <input type= /// submit>,and <input /// type= /// reset> elements on /// the server. /// /// public HtmlInputSubmit() : base("submit") { } /* * Creates an intrinsic Html INPUT type=button,submit,reset control. */ ///Initializes a new instance of a ///class using /// default values. /// public HtmlInputSubmit(string type) : base(type) { } internal override void RenderAttributesInternal(HtmlTextWriter writer) { if (Page != null) { Util.WriteOnClickAttribute( writer, this, true /* submitsAutomatically */, false /* submitsProgramatically */, (CausesValidation && Page.GetValidators(ValidationGroup).Count > 0), ValidationGroup); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.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
- AQNBuilder.cs
- Image.cs
- HttpPostProtocolReflector.cs
- ItemsControl.cs
- SchemaEntity.cs
- BooleanFacetDescriptionElement.cs
- CheckBoxBaseAdapter.cs
- Graphics.cs
- MSAANativeProvider.cs
- BitmapSizeOptions.cs
- ChangeBlockUndoRecord.cs
- HotSpot.cs
- DataServiceConfiguration.cs
- DependencyObjectProvider.cs
- ViewUtilities.cs
- XmlExtensionFunction.cs
- IISMapPath.cs
- NumericExpr.cs
- TemplateField.cs
- BamlRecordHelper.cs
- XmlNode.cs
- CqlParserHelpers.cs
- ModelProperty.cs
- PersonalizationStateQuery.cs
- SessionPageStatePersister.cs
- DerivedKeySecurityToken.cs
- GlyphsSerializer.cs
- XmlSchemaCollection.cs
- DirectoryNotFoundException.cs
- StrongTypingException.cs
- ArcSegment.cs
- DrawingImage.cs
- ZoneIdentityPermission.cs
- DataGridViewRowPostPaintEventArgs.cs
- PropertyGeneratedEventArgs.cs
- Decimal.cs
- Win32Exception.cs
- XDRSchema.cs
- ProjectionPathSegment.cs
- CheckBoxDesigner.cs
- ObjRef.cs
- SchemaNames.cs
- XmlAttributeCache.cs
- OracleTimeSpan.cs
- FrugalList.cs
- ObjectPropertyMapping.cs
- MSAAEventDispatcher.cs
- SystemIPGlobalStatistics.cs
- GACIdentityPermission.cs
- HandlerFactoryWrapper.cs
- ElementUtil.cs
- TextBox.cs
- GenericPrincipal.cs
- ValueHandle.cs
- CompiledXpathExpr.cs
- NavigatorInput.cs
- Menu.cs
- _UriSyntax.cs
- SingleObjectCollection.cs
- CultureInfoConverter.cs
- DataGridViewCellStyleConverter.cs
- Pkcs9Attribute.cs
- UnsafePeerToPeerMethods.cs
- JoinTreeSlot.cs
- DesignerTransaction.cs
- ScriptResourceMapping.cs
- CommonRemoteMemoryBlock.cs
- SiteMapDataSource.cs
- RoamingStoreFileUtility.cs
- Point.cs
- SubMenuStyleCollection.cs
- Events.cs
- MemberPathMap.cs
- Stacktrace.cs
- PageStatePersister.cs
- LiteralControl.cs
- PackageRelationship.cs
- ListenerElementsCollection.cs
- FixedDocument.cs
- SmtpException.cs
- ResXBuildProvider.cs
- CharUnicodeInfo.cs
- GlobalItem.cs
- QilIterator.cs
- __ConsoleStream.cs
- Panel.cs
- CodeCompileUnit.cs
- NetPeerTcpBindingCollectionElement.cs
- ObjectDataSourceView.cs
- StorageScalarPropertyMapping.cs
- BaseValidatorDesigner.cs
- HtmlLink.cs
- ViewStateException.cs
- UITypeEditor.cs
- WebConfigurationManager.cs
- Calendar.cs
- SeparatorAutomationPeer.cs
- SchemaImporterExtensionElement.cs
- SectionUpdates.cs
- QuadraticBezierSegment.cs