Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / DropDownList.cs / 2 / DropDownList.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Collections.Specialized; using System.Drawing; using System.Web; using System.Web.UI; using System.Web.UI.WebControls.Adapters; using System.Security.Permissions; ////// [ SupportsEventValidation, ValidationProperty("SelectedItem") ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class DropDownList : ListControl, IPostBackDataHandler { ///Creates a control that allows the user to select a single item from a /// drop-down list. ////// public DropDownList() { } ///Initializes a new instance of the ///class. /// [ Browsable(false) ] public override Color BorderColor { get { return base.BorderColor; } set { base.BorderColor = value; } } ///[To be supplied.] ////// [ Browsable(false) ] public override BorderStyle BorderStyle { get { return base.BorderStyle; } set { base.BorderStyle = value; } } ///[To be supplied.] ////// [ Browsable(false) ] public override Unit BorderWidth { get { return base.BorderWidth; } set { base.BorderWidth = value; } } ///[To be supplied.] ////// [ WebCategory("Behavior"), DefaultValue(0), WebSysDescription(SR.WebControl_SelectedIndex), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public override int SelectedIndex { get { int selectedIndex = base.SelectedIndex; if (selectedIndex < 0 && Items.Count > 0) { Items[0].Selected = true; selectedIndex = 0; } return selectedIndex; } set { base.SelectedIndex = value; } } internal override ArrayList SelectedIndicesInternal { get { int sideEffect = SelectedIndex; return base.SelectedIndicesInternal; } } protected override void AddAttributesToRender(HtmlTextWriter writer) { string uniqueID = UniqueID; if (uniqueID != null) { writer.AddAttribute(HtmlTextWriterAttribute.Name, uniqueID); } base.AddAttributesToRender(writer); } protected override ControlCollection CreateControlCollection() { return new EmptyControlCollection(this); } ///Gets or sets the index of the item selected by the user /// from the ////// control. /// /// bool IPostBackDataHandler.LoadPostData(String postDataKey, NameValueCollection postCollection) { return LoadPostData(postDataKey, postCollection); } ///Process posted data for the ///control. /// /// protected virtual bool LoadPostData(String postDataKey, NameValueCollection postCollection) { // When a DropDownList is disabled, then there is no postback data for it. // Since DropDownList doesn't call RegisterRequiresPostBack, this method will // never be called, so we don't need to worry about ignoring empty postback data. string [] selectedItems = postCollection.GetValues(postDataKey); EnsureDataBound(); if (selectedItems != null) { ValidateEvent(postDataKey, selectedItems[0]); int n = Items.FindByValueInternal(selectedItems[0], false); if (SelectedIndex != n) { SetPostDataSelection(n); return true; } } return false; } ///Process posted data for the ///control. /// /// void IPostBackDataHandler.RaisePostDataChangedEvent() { RaisePostDataChangedEvent(); } ///Raises events for the ///control on post back. /// /// protected virtual void RaisePostDataChangedEvent() { if (AutoPostBack && !Page.IsPostBackEventControlRegistered) { // VSWhidbey 204824 Page.AutoPostBackControl = this; if (CausesValidation) { Page.Validate(ValidationGroup); } } OnSelectedIndexChanged(EventArgs.Empty); } protected internal override void VerifyMultiSelect() { throw new HttpException(SR.GetString(SR.Cant_Multiselect, "DropDownList")); } } }Raises events for the ///control on post back.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Table.cs
- HttpRequestBase.cs
- ValidationRule.cs
- EnterpriseServicesHelper.cs
- CodeCompileUnit.cs
- OrthographicCamera.cs
- EntityDataReader.cs
- BufferedStream2.cs
- InternalPolicyElement.cs
- UnsafeNativeMethods.cs
- MailSettingsSection.cs
- ConditionChanges.cs
- WindowsListBox.cs
- Util.cs
- StaticSiteMapProvider.cs
- StreamResourceInfo.cs
- AttributeCollection.cs
- SecureStringHasher.cs
- HMACSHA384.cs
- PauseStoryboard.cs
- SqlDependencyUtils.cs
- MetadataPropertyvalue.cs
- SigningCredentials.cs
- PropertyBuilder.cs
- ListControlDataBindingHandler.cs
- GlyphRunDrawing.cs
- ToolBarButtonDesigner.cs
- Int64AnimationUsingKeyFrames.cs
- StringKeyFrameCollection.cs
- MessageQueueException.cs
- Transform.cs
- ResXFileRef.cs
- EDesignUtil.cs
- StringAttributeCollection.cs
- Propagator.JoinPropagator.cs
- ListMarkerSourceInfo.cs
- RemoteCryptoDecryptRequest.cs
- StatusBarDrawItemEvent.cs
- GACMembershipCondition.cs
- PieceNameHelper.cs
- HttpHandler.cs
- NotSupportedException.cs
- ScriptResourceInfo.cs
- EdmValidator.cs
- MethodExpression.cs
- SchemaTableOptionalColumn.cs
- HtmlToClrEventProxy.cs
- TextControlDesigner.cs
- Endpoint.cs
- ArrayList.cs
- XmlTypeAttribute.cs
- BaseValidator.cs
- PDBReader.cs
- FormatterServices.cs
- TabletCollection.cs
- DateTimeConverter2.cs
- SyndicationDeserializer.cs
- SequentialUshortCollection.cs
- FlowLayoutPanel.cs
- SmtpNegotiateAuthenticationModule.cs
- CreateParams.cs
- CalendarDateRange.cs
- RenderDataDrawingContext.cs
- PeerNameRecordCollection.cs
- DataGridViewButtonCell.cs
- Configuration.cs
- _NetRes.cs
- TextEditor.cs
- SymbolEqualComparer.cs
- ResourceReferenceKeyNotFoundException.cs
- ProgressBar.cs
- ListViewGroup.cs
- SQLResource.cs
- ObjectDataSource.cs
- DateRangeEvent.cs
- WorkflowControlEndpoint.cs
- UnsafeNativeMethods.cs
- BufferedGraphics.cs
- EntityWithKeyStrategy.cs
- StaticFileHandler.cs
- ActivityCodeDomSerializer.cs
- SpellerHighlightLayer.cs
- AsyncResult.cs
- ReflectionTypeLoadException.cs
- HtmlWindow.cs
- DescendantQuery.cs
- ToggleButtonAutomationPeer.cs
- TraceContext.cs
- BitmapInitialize.cs
- TimelineGroup.cs
- KeyGesture.cs
- HttpSessionStateWrapper.cs
- TextElement.cs
- Pipe.cs
- Rect.cs
- InstancePersistenceEvent.cs
- RequestContext.cs
- SelectedGridItemChangedEvent.cs
- ListBindingHelper.cs
- MouseDevice.cs