Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlMeta.cs / 1 / 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)) ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)] 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)) ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)] 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
- TransformerInfo.cs
- AuthenticationSection.cs
- serverconfig.cs
- DataAccessException.cs
- XPathDocumentBuilder.cs
- SystemWebExtensionsSectionGroup.cs
- BuildProvider.cs
- TextDecoration.cs
- Util.cs
- PeerUnsafeNativeCryptMethods.cs
- ScrollViewerAutomationPeer.cs
- RegistryConfigurationProvider.cs
- InstanceOwner.cs
- EpmSyndicationContentSerializer.cs
- CheckBox.cs
- MultiSelectRootGridEntry.cs
- CornerRadiusConverter.cs
- EntityType.cs
- CryptoKeySecurity.cs
- SafeNativeMethods.cs
- SHA512CryptoServiceProvider.cs
- DataTableMapping.cs
- HttpCookieCollection.cs
- SessionPageStateSection.cs
- ConstNode.cs
- ReadOnlyDataSourceView.cs
- XmlSchemaValidationException.cs
- TextEffect.cs
- ServiceDescriptionImporter.cs
- Win32PrintDialog.cs
- RegularExpressionValidator.cs
- SoapInteropTypes.cs
- StrokeCollectionConverter.cs
- PackagePartCollection.cs
- TranslateTransform3D.cs
- util.cs
- WebPartDisplayModeCancelEventArgs.cs
- Matrix.cs
- RSAOAEPKeyExchangeDeformatter.cs
- FormsAuthenticationCredentials.cs
- StopStoryboard.cs
- TextDecorationCollectionConverter.cs
- ToolStripDropDownClosingEventArgs.cs
- HttpHandlersSection.cs
- Code.cs
- SqlError.cs
- LinkedResourceCollection.cs
- ValidatorCompatibilityHelper.cs
- NumberFunctions.cs
- ItemsPanelTemplate.cs
- DoubleMinMaxAggregationOperator.cs
- AuthenticateEventArgs.cs
- EntityTypeEmitter.cs
- Encoding.cs
- TextViewBase.cs
- SystemGatewayIPAddressInformation.cs
- TriggerCollection.cs
- GlobalizationSection.cs
- SymbolMethod.cs
- StringCollection.cs
- CodeMethodMap.cs
- EventSourceCreationData.cs
- OutputScopeManager.cs
- DataColumnChangeEvent.cs
- SoapSchemaMember.cs
- ProxySimple.cs
- PeerNearMe.cs
- ListViewItemSelectionChangedEvent.cs
- SubpageParagraph.cs
- SafeRightsManagementPubHandle.cs
- COM2IProvidePropertyBuilderHandler.cs
- CompiledRegexRunnerFactory.cs
- SignedXmlDebugLog.cs
- FontFamily.cs
- StylusDownEventArgs.cs
- WebBrowserNavigatedEventHandler.cs
- ReferentialConstraintRoleElement.cs
- x509utils.cs
- RadioButton.cs
- ReadOnlyDataSource.cs
- PageThemeCodeDomTreeGenerator.cs
- WebBrowserContainer.cs
- SystemParameters.cs
- EntityDataSourceWizardForm.cs
- FileVersionInfo.cs
- DrawingVisual.cs
- DataServices.cs
- XPathMultyIterator.cs
- File.cs
- InputChannel.cs
- WebPartDisplayModeCancelEventArgs.cs
- SqlProviderManifest.cs
- MultipleViewPatternIdentifiers.cs
- DetailsViewPagerRow.cs
- EventRouteFactory.cs
- ServiceDescriptions.cs
- DataSourceProvider.cs
- TimelineGroup.cs
- DataProtection.cs