Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / HTMLTagNameToTypeMapper.cs / 1 / 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. //------------------------------------------------------------------------------ //// 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
- TypeRestriction.cs
- CancelEventArgs.cs
- CatalogPartCollection.cs
- XmlSchemaSimpleContentExtension.cs
- StringToken.cs
- ListViewInsertEventArgs.cs
- CryptoProvider.cs
- EditCommandColumn.cs
- Model3D.cs
- SimpleType.cs
- SharedPerformanceCounter.cs
- BuildProvider.cs
- LinqDataSourceValidationException.cs
- _NetworkingPerfCounters.cs
- StreamSecurityUpgradeAcceptorAsyncResult.cs
- Quad.cs
- TabletCollection.cs
- WebPartEditorApplyVerb.cs
- TextSpanModifier.cs
- FixedSOMPageConstructor.cs
- TreeNodeBinding.cs
- DefaultDialogButtons.cs
- ConfigurationValues.cs
- StringFormat.cs
- RoleManagerModule.cs
- PassportIdentity.cs
- OLEDB_Util.cs
- SqlDuplicator.cs
- ParameterToken.cs
- PrintPreviewDialog.cs
- ScriptMethodAttribute.cs
- GlyphsSerializer.cs
- EditorAttributeInfo.cs
- SQLGuid.cs
- TemplateControlParser.cs
- TrustLevel.cs
- CompatibleComparer.cs
- UnicastIPAddressInformationCollection.cs
- CssTextWriter.cs
- PolicyLevel.cs
- XmlWhitespace.cs
- WebHeaderCollection.cs
- RegexParser.cs
- XmlSchemaFacet.cs
- BasicHttpBindingCollectionElement.cs
- MarkupObject.cs
- HttpCapabilitiesEvaluator.cs
- ObjectContextServiceProvider.cs
- Trace.cs
- DecimalConverter.cs
- DeferredTextReference.cs
- HighContrastHelper.cs
- EmptyCollection.cs
- ChtmlImageAdapter.cs
- HtmlUtf8RawTextWriter.cs
- MasterPageBuildProvider.cs
- SendMailErrorEventArgs.cs
- LogicalMethodInfo.cs
- VirtualPathProvider.cs
- WebResourceAttribute.cs
- NamespaceExpr.cs
- EntityViewContainer.cs
- SyntaxCheck.cs
- LifetimeServices.cs
- SimpleWebHandlerParser.cs
- EventBookmark.cs
- AsnEncodedData.cs
- ReadOnlyDataSourceView.cs
- List.cs
- StorageAssociationTypeMapping.cs
- BitmapMetadata.cs
- SecurityPolicySection.cs
- ProgressChangedEventArgs.cs
- HostDesigntimeLicenseContext.cs
- EventManager.cs
- NavigationPropertyEmitter.cs
- NextPreviousPagerField.cs
- DrawingAttributeSerializer.cs
- Window.cs
- ListViewCommandEventArgs.cs
- SamlAuthorityBinding.cs
- DbParameterCollectionHelper.cs
- NamespaceInfo.cs
- RangeContentEnumerator.cs
- LineInfo.cs
- TypeNameConverter.cs
- TextServicesDisplayAttributePropertyRanges.cs
- SocketAddress.cs
- DynamicDataExtensions.cs
- SuppressMergeCheckAttribute.cs
- GridViewRowCollection.cs
- ActivationArguments.cs
- TreeView.cs
- listitem.cs
- PeerPresenceInfo.cs
- RectAnimation.cs
- DateTimeUtil.cs
- HttpDigestClientCredential.cs
- InitializingNewItemEventArgs.cs
- FlagsAttribute.cs