Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- SchemeSettingElement.cs
- HashCodeCombiner.cs
- FixUp.cs
- AsymmetricKeyExchangeFormatter.cs
- InstanceDescriptor.cs
- Win32SafeHandles.cs
- ProcessThreadCollection.cs
- SoapAttributes.cs
- XmlEnumAttribute.cs
- ScrollProperties.cs
- DelegateHelpers.Generated.cs
- ComponentResourceKey.cs
- HttpDebugHandler.cs
- ListControlConvertEventArgs.cs
- WindowsAuthenticationEventArgs.cs
- Qualifier.cs
- ColumnTypeConverter.cs
- SafeSecurityHelper.cs
- OracleDataAdapter.cs
- MergablePropertyAttribute.cs
- ManagedWndProcTracker.cs
- HttpStaticObjectsCollectionBase.cs
- ExpressionDumper.cs
- WebPartConnectionsConfigureVerb.cs
- IDispatchConstantAttribute.cs
- oledbmetadatacollectionnames.cs
- OpenTypeLayout.cs
- DeclarativeConditionsCollection.cs
- _BufferOffsetSize.cs
- ZipIOCentralDirectoryBlock.cs
- DynamicExpression.cs
- XamlToRtfParser.cs
- _UncName.cs
- TextTrailingCharacterEllipsis.cs
- Panel.cs
- SizeFConverter.cs
- PersonalizableAttribute.cs
- SelectionService.cs
- PreloadHost.cs
- SpAudioStreamWrapper.cs
- SessionParameter.cs
- IPHostEntry.cs
- InfoCardRSAOAEPKeyExchangeFormatter.cs
- String.cs
- DockingAttribute.cs
- DateTimeFormatInfo.cs
- Helpers.cs
- SynchronizingStream.cs
- PlaceHolder.cs
- ObjectDataSourceSelectingEventArgs.cs
- PersonalizationProviderCollection.cs
- ZeroOpNode.cs
- OutOfProcStateClientManager.cs
- SystemWebSectionGroup.cs
- DuplicateWaitObjectException.cs
- ConfigXmlElement.cs
- NavigationService.cs
- CorrelationService.cs
- RelationshipEndMember.cs
- XmlElementCollection.cs
- TwoPhaseCommitProxy.cs
- IconConverter.cs
- WebColorConverter.cs
- DataRelation.cs
- ThemeConfigurationDialog.cs
- ThousandthOfEmRealDoubles.cs
- SurrogateSelector.cs
- HtmlContainerControl.cs
- ReadContentAsBinaryHelper.cs
- UnaryQueryOperator.cs
- GroupBoxRenderer.cs
- AutoGeneratedFieldProperties.cs
- ActivityMarkupSerializationProvider.cs
- PageAsyncTask.cs
- DataRecordInternal.cs
- Math.cs
- ServiceOperation.cs
- BStrWrapper.cs
- StylusSystemGestureEventArgs.cs
- ContainerParaClient.cs
- SqlTransaction.cs
- HyperLinkField.cs
- BasePropertyDescriptor.cs
- GroupItem.cs
- FontCacheLogic.cs
- RtfControls.cs
- XmlCharType.cs
- CLSCompliantAttribute.cs
- Int32Collection.cs
- ContextMenuService.cs
- CatalogPartChrome.cs
- DataGridRow.cs
- SqlInternalConnection.cs
- HandlerBase.cs
- PerformanceCounterCategory.cs
- Tag.cs
- MenuEventArgs.cs
- OdbcConnectionOpen.cs
- AvTraceDetails.cs
- ConfigsHelper.cs