Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlMeta.cs / 1305376 / HtmlMeta.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.HtmlControls { using System; using System.Security; using System.Security.Permissions; using System.ComponentModel; [ ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder)) ] public class HtmlMeta : HtmlControl { public HtmlMeta() : base("meta") { } [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public virtual string Content { get { string s = Attributes["content"]; return ((s != null) ? s : String.Empty); } set { Attributes["content"] = MapStringAttributeToString(value); } } [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public virtual string HttpEquiv { get { string s = Attributes["http-equiv"]; return ((s != null) ? s : String.Empty); } set { Attributes["http-equiv"] = MapStringAttributeToString(value); } } [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public virtual string Name { get { string s = Attributes["name"]; return ((s != null) ? s : String.Empty); } set { Attributes["name"] = MapStringAttributeToString(value); } } [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public virtual string Scheme { get { string s = Attributes["scheme"]; return ((s != null) ? s : String.Empty); } set { Attributes["scheme"] = MapStringAttributeToString(value); } } protected internal override void Render(HtmlTextWriter writer) { if (EnableLegacyRendering) { base.Render(writer); } else { // By default HTMLControl doesn't render a closing /> so its not XHTML compliance writer.WriteBeginTag(TagName); RenderAttributes(writer); writer.Write(HtmlTextWriter.SelfClosingTagEnd); } } } } // 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
- RadioButtonList.cs
- Compensate.cs
- ApplicationServiceHelper.cs
- nulltextnavigator.cs
- _TimerThread.cs
- XmlSerializerObjectSerializer.cs
- DataTableReader.cs
- XmlDataProvider.cs
- x509utils.cs
- StaticFileHandler.cs
- SchemaInfo.cs
- ReaderWriterLockWrapper.cs
- HuffmanTree.cs
- SQLDecimal.cs
- Simplifier.cs
- SizeChangedEventArgs.cs
- HttpCacheVaryByContentEncodings.cs
- storepermission.cs
- SqlDesignerDataSourceView.cs
- ContentPropertyAttribute.cs
- DoubleAverageAggregationOperator.cs
- ToolStripDropDown.cs
- EventManager.cs
- ConfigurationStrings.cs
- SiteIdentityPermission.cs
- XamlPointCollectionSerializer.cs
- FrugalList.cs
- InputScopeNameConverter.cs
- WebBrowserDocumentCompletedEventHandler.cs
- SharedPerformanceCounter.cs
- DataGridViewAdvancedBorderStyle.cs
- NamespaceQuery.cs
- XmlRootAttribute.cs
- ApplicationSecurityInfo.cs
- DllNotFoundException.cs
- RoutedEventValueSerializer.cs
- MethodBody.cs
- CodeTryCatchFinallyStatement.cs
- OSFeature.cs
- ValidationSummary.cs
- Button.cs
- Timer.cs
- Package.cs
- DPCustomTypeDescriptor.cs
- OLEDB_Enum.cs
- RegistrationServices.cs
- WebContext.cs
- CodeGenerationManager.cs
- streamingZipPartStream.cs
- GZipStream.cs
- SequenceDesigner.cs
- Random.cs
- BoolExpr.cs
- AssociationTypeEmitter.cs
- ExpressionPrefixAttribute.cs
- ApplicationDirectoryMembershipCondition.cs
- HttpContext.cs
- ProcessManager.cs
- RouteItem.cs
- StateMachineHelpers.cs
- AlgoModule.cs
- LayoutDump.cs
- PrintController.cs
- CommandEventArgs.cs
- IssuedTokenClientBehaviorsElement.cs
- Command.cs
- Configuration.cs
- coordinatorscratchpad.cs
- DataRelation.cs
- Permission.cs
- XmlUrlResolver.cs
- FileNotFoundException.cs
- RegexBoyerMoore.cs
- Logging.cs
- FreezableCollection.cs
- DependencyObjectPropertyDescriptor.cs
- LambdaCompiler.Generated.cs
- XmlSchemaImport.cs
- MergeExecutor.cs
- ProgressBar.cs
- CompensationExtension.cs
- SqlException.cs
- DateTimeConverter2.cs
- BasePattern.cs
- DataServiceResponse.cs
- TypeExtensionConverter.cs
- ClientSettingsProvider.cs
- PersonalizationStateQuery.cs
- DeploymentSectionCache.cs
- SchemeSettingElement.cs
- HwndSource.cs
- ZipFileInfoCollection.cs
- WebPartConnection.cs
- GlyphElement.cs
- InvokeHandlers.cs
- EntityTransaction.cs
- UrlMappingsSection.cs
- CodeCompileUnit.cs
- BuildProvidersCompiler.cs
- BypassElementCollection.cs