Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- RIPEMD160.cs
- dtdvalidator.cs
- TextParaLineResult.cs
- BooleanConverter.cs
- ActivationServices.cs
- HtmlGenericControl.cs
- MatrixCamera.cs
- Process.cs
- NeedSkipTokenVisitor.cs
- CodeIndexerExpression.cs
- DataServiceResponse.cs
- ProfilePropertySettings.cs
- BitHelper.cs
- TransformerTypeCollection.cs
- GenericWebPart.cs
- CommandEventArgs.cs
- DbParameterHelper.cs
- DefaultBinder.cs
- NullableIntSumAggregationOperator.cs
- WorkflowValidationFailedException.cs
- PerfCounters.cs
- OracleRowUpdatingEventArgs.cs
- BrowsableAttribute.cs
- SqlBooleanizer.cs
- pingexception.cs
- ConfigurationSection.cs
- ValidationEventArgs.cs
- SystemIPv4InterfaceProperties.cs
- Normalization.cs
- PageEventArgs.cs
- ActivityExecutor.cs
- DataServiceEntityAttribute.cs
- EnumDataContract.cs
- SoapFormatterSinks.cs
- ListViewTableRow.cs
- _SingleItemRequestCache.cs
- SplineKeyFrames.cs
- clipboard.cs
- WebPartRestoreVerb.cs
- SafeLibraryHandle.cs
- DrawingContextDrawingContextWalker.cs
- Mapping.cs
- TextSelectionHighlightLayer.cs
- RegexCompilationInfo.cs
- SQLSingle.cs
- XPathNavigatorKeyComparer.cs
- CodeObjectCreateExpression.cs
- TransformerTypeCollection.cs
- BezierSegment.cs
- HttpContextServiceHost.cs
- Stacktrace.cs
- TreeIterators.cs
- DataComponentMethodGenerator.cs
- RemoteEndpointMessageProperty.cs
- SystemFonts.cs
- Animatable.cs
- DataGridPagerStyle.cs
- FloatAverageAggregationOperator.cs
- DrawingImage.cs
- XPathAncestorIterator.cs
- CellParagraph.cs
- BitConverter.cs
- JavaScriptString.cs
- ActivityXamlServices.cs
- ProfileSection.cs
- UserControl.cs
- ContainerFilterService.cs
- HwndHostAutomationPeer.cs
- ForeignKeyConstraint.cs
- ExceptionUtil.cs
- NavigationPropertyEmitter.cs
- FolderBrowserDialog.cs
- BinaryObjectReader.cs
- SatelliteContractVersionAttribute.cs
- LinqToSqlWrapper.cs
- ConfigurationLocation.cs
- RowType.cs
- VersionedStreamOwner.cs
- AuthorizationSection.cs
- DesignerDeviceConfig.cs
- CalendarAutomationPeer.cs
- DocumentGrid.cs
- JsonWriter.cs
- EntityModelSchemaGenerator.cs
- RelationshipConverter.cs
- ScriptingAuthenticationServiceSection.cs
- SpeakInfo.cs
- SpnegoTokenAuthenticator.cs
- EnvelopedPkcs7.cs
- ConsoleCancelEventArgs.cs
- AppDomain.cs
- AsyncStreamReader.cs
- MimeMultiPart.cs
- AssemblyCollection.cs
- AutoScrollExpandMessageFilter.cs
- ListViewSortEventArgs.cs
- SmtpNegotiateAuthenticationModule.cs
- QueryResponse.cs
- TextElementEnumerator.cs
- dataSvcMapFileLoader.cs