Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / HTMLTagNameToTypeMapper.cs / 3 / 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; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HandlerFactoryWrapper.cs
- PageClientProxyGenerator.cs
- DataGridViewColumnConverter.cs
- nulltextnavigator.cs
- OdbcEnvironmentHandle.cs
- RuleInfoComparer.cs
- CellRelation.cs
- SourceLineInfo.cs
- InputLanguageCollection.cs
- OdbcCommandBuilder.cs
- DbDataSourceEnumerator.cs
- QilCloneVisitor.cs
- RowsCopiedEventArgs.cs
- RepeaterDesigner.cs
- BinarySerializer.cs
- CaseStatementSlot.cs
- ExpressionValueEditor.cs
- _ListenerRequestStream.cs
- TabItem.cs
- HtmlInputControl.cs
- XmlNamespaceMappingCollection.cs
- ThemeableAttribute.cs
- HeaderedContentControl.cs
- SwitchLevelAttribute.cs
- Input.cs
- TakeOrSkipQueryOperator.cs
- TimeEnumHelper.cs
- NullableLongAverageAggregationOperator.cs
- FileRecordSequenceHelper.cs
- SinglePageViewer.cs
- ObjectSet.cs
- SoapServerProtocol.cs
- AnimationClockResource.cs
- MemberAccessException.cs
- ObjectReaderCompiler.cs
- PeerNameRecord.cs
- SpellerStatusTable.cs
- PriorityItem.cs
- TypeElement.cs
- IsolatedStorageFileStream.cs
- LineVisual.cs
- FormatConvertedBitmap.cs
- RepeaterItem.cs
- TrackPoint.cs
- IgnoreFlushAndCloseStream.cs
- RenameRuleObjectDialog.Designer.cs
- WSUtilitySpecificationVersion.cs
- StreamHelper.cs
- EdmFunction.cs
- CommonGetThemePartSize.cs
- CodeCatchClause.cs
- ExceptionHandler.cs
- SystemColors.cs
- UpdateProgress.cs
- RequiredFieldValidator.cs
- TextPatternIdentifiers.cs
- ObjectMaterializedEventArgs.cs
- EventItfInfo.cs
- TargetPerspective.cs
- HttpCacheParams.cs
- WebPartTransformerAttribute.cs
- TextEffectResolver.cs
- ToolStripContentPanel.cs
- DriveInfo.cs
- XslNumber.cs
- _IPv4Address.cs
- DataControlFieldTypeEditor.cs
- MgmtConfigurationRecord.cs
- SqlUtils.cs
- SiteMapDataSourceView.cs
- basevalidator.cs
- ListViewTableCell.cs
- ComplexBindingPropertiesAttribute.cs
- Axis.cs
- ISAPIRuntime.cs
- LambdaCompiler.Binary.cs
- SqlDataSourceView.cs
- XmlAttribute.cs
- ThreadAbortException.cs
- PreProcessor.cs
- Scheduler.cs
- DataTableClearEvent.cs
- RectangleConverter.cs
- DataTemplateKey.cs
- InvariantComparer.cs
- RichTextBoxConstants.cs
- SingleAnimation.cs
- CompoundFileStreamReference.cs
- IItemContainerGenerator.cs
- ResourceExpressionBuilder.cs
- OperationParameterInfo.cs
- CacheAxisQuery.cs
- DynamicMetaObject.cs
- BaseHashHelper.cs
- SecurityKeyType.cs
- DataSourceHelper.cs
- EncodingTable.cs
- ResourceAttributes.cs
- XamlFilter.cs
- PrimitiveRenderer.cs