Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / HTMLTagNameToTypeMapper.cs / 1305376 / HTMLTagNameToTypeMapper.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Mapper of html tags to control types. * * Copyright (c) 1998 Microsoft Corporation */ namespace System.Web.UI { using System.ComponentModel; using System; using System.Collections; using System.Collections.Specialized; using System.Reflection; using System.Web.UI.HtmlControls; using System.Web.Util; using System.Globalization; internal class HtmlTagNameToTypeMapper : ITagNameToTypeMapper { static Hashtable _tagMap; static Hashtable _inputTypes; internal HtmlTagNameToTypeMapper() { } /*public*/ Type ITagNameToTypeMapper.GetControlType(string tagName, IDictionary attributeBag) { Type controlType; if (_tagMap == null) { Hashtable t = new Hashtable(10, StringComparer.OrdinalIgnoreCase); t.Add("a", typeof(HtmlAnchor)); t.Add("button", typeof(HtmlButton)); t.Add("form", typeof(HtmlForm)); t.Add("head", typeof(HtmlHead)); t.Add("img", typeof(HtmlImage)); t.Add("textarea", typeof(HtmlTextArea)); t.Add("select", typeof(HtmlSelect)); t.Add("table", typeof(HtmlTable)); t.Add("tr", typeof(HtmlTableRow)); t.Add("td", typeof(HtmlTableCell)); t.Add("th", typeof(HtmlTableCell)); _tagMap = t; } if (_inputTypes == null) { Hashtable t = new Hashtable(10, StringComparer.OrdinalIgnoreCase); t.Add("text", typeof(HtmlInputText)); t.Add("password", typeof(HtmlInputPassword)); t.Add("button", typeof(HtmlInputButton)); t.Add("submit", typeof(HtmlInputSubmit)); t.Add("reset", typeof(HtmlInputReset)); t.Add("image", typeof(HtmlInputImage)); t.Add("checkbox", typeof(HtmlInputCheckBox)); t.Add("radio", typeof(HtmlInputRadioButton)); t.Add("hidden", typeof(HtmlInputHidden)); t.Add("file", typeof(HtmlInputFile)); _inputTypes = t; } if (StringUtil.EqualsIgnoreCase("input", tagName)) { string type = (string)attributeBag["type"]; if (type == null) type = "text"; controlType = (Type)_inputTypes[type]; if (controlType == null) throw new HttpException( SR.GetString(SR.Invalid_type_for_input_tag, type)); } else { controlType = (Type)_tagMap[tagName]; if (controlType == null) controlType = typeof(HtmlGenericControl); } return controlType; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SelectedGridItemChangedEvent.cs
- SeekStoryboard.cs
- StickyNoteAnnotations.cs
- XmlAggregates.cs
- WebPartHeaderCloseVerb.cs
- TreeViewAutomationPeer.cs
- ListViewInsertedEventArgs.cs
- RegisteredArrayDeclaration.cs
- DbProviderServices.cs
- _UncName.cs
- DbConnectionPool.cs
- JsonMessageEncoderFactory.cs
- Icon.cs
- AutomationElementCollection.cs
- SafeArrayRankMismatchException.cs
- DocumentGrid.cs
- StandardToolWindows.cs
- ParallelTimeline.cs
- UserControl.cs
- DataGridViewRowsRemovedEventArgs.cs
- Signature.cs
- LinkLabel.cs
- QueryableDataSourceHelper.cs
- ApplicationInfo.cs
- EntryPointNotFoundException.cs
- XmlAtomicValue.cs
- ApplyImportsAction.cs
- Pool.cs
- DefaultHttpHandler.cs
- ISFClipboardData.cs
- DataObject.cs
- SoapCodeExporter.cs
- DeleteMemberBinder.cs
- AxisAngleRotation3D.cs
- HttpConfigurationContext.cs
- MemoryMappedFile.cs
- StateItem.cs
- StickyNoteContentControl.cs
- TemplateControl.cs
- DesignerLoader.cs
- OpCodes.cs
- StylusPlugInCollection.cs
- CLRBindingWorker.cs
- ConnectionProviderAttribute.cs
- ContainerVisual.cs
- QueryOptionExpression.cs
- KeySplineConverter.cs
- UrlMappingsSection.cs
- columnmapfactory.cs
- CompareInfo.cs
- XamlPointCollectionSerializer.cs
- BindToObject.cs
- CodeMemberEvent.cs
- ListBox.cs
- CompositeScriptReferenceEventArgs.cs
- WindowInteropHelper.cs
- XMLSchema.cs
- SerializableTypeCodeDomSerializer.cs
- WebHttpBehavior.cs
- SQLInt32Storage.cs
- ScriptBehaviorDescriptor.cs
- HtmlEncodedRawTextWriter.cs
- ResolveNameEventArgs.cs
- MediaScriptCommandRoutedEventArgs.cs
- XmlTextReaderImpl.cs
- UpDownEvent.cs
- FileDialog.cs
- TableStyle.cs
- Gdiplus.cs
- InheritanceContextHelper.cs
- ExtendedProtectionPolicyElement.cs
- DataServiceHostWrapper.cs
- WindowsClientElement.cs
- DataServiceProviderWrapper.cs
- FixedPosition.cs
- CheckedPointers.cs
- XmlMembersMapping.cs
- columnmapkeybuilder.cs
- DriveNotFoundException.cs
- FtpRequestCacheValidator.cs
- SqlUtil.cs
- MD5.cs
- BulletChrome.cs
- RemoveStoryboard.cs
- WebEventCodes.cs
- RequestDescription.cs
- ProfileParameter.cs
- ResourcePermissionBase.cs
- NegotiateStream.cs
- DateTimeFormatInfoScanner.cs
- ListParaClient.cs
- MD5CryptoServiceProvider.cs
- PropertyMetadata.cs
- itemelement.cs
- XslTransform.cs
- GridViewPageEventArgs.cs
- ImageAnimator.cs
- PeerApplicationLaunchInfo.cs
- ListViewEditEventArgs.cs
- AdCreatedEventArgs.cs