Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlContainerControl.cs / 1305376 / HtmlContainerControl.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.HtmlControls { using System.Runtime.Serialization.Formatters; using System; using System.Collections; using System.ComponentModel; using System.IO; using System.Web.UI; using System.Security.Permissions; /* * A control representing an intrinsic Html tag. */ ////// abstract public class HtmlContainerControl : HtmlControl { /* * Creates a new WebControl */ ///The ////// class defines the methods, /// properties and events /// available to all Html Server controls that must have a /// closing tag. /// protected HtmlContainerControl() : this("span") { } /* * Creates a new HtmlContainerControl */ ///Initializes a new instance of a ///class using /// default values. /// public HtmlContainerControl(string tag) : base(tag) { } /* * The inner html content between the begin and end tag. * A set will replace any existing child controls with a single literal. * A get will return the text of a single literal child OR * will throw an exception if there are no children, more than one * child, or the single child is not a literal. */ ///Initializes a new instance of a ///class using the /// specified string. /// [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), HtmlControlPersistable(false), ] public virtual string InnerHtml { get { if (IsLiteralContent()) return((LiteralControl) Controls[0]).Text; else if (HasControls() && (Controls.Count == 1) && Controls[0] is DataBoundLiteralControl) return ((DataBoundLiteralControl) Controls[0]).Text; else { if (Controls.Count == 0) return String.Empty; throw new HttpException(SR.GetString(SR.Inner_Content_not_literal, ID)); } } set { Controls.Clear(); Controls.Add(new LiteralControl(value)); ViewState["innerhtml"] = value; } } /* * The inner text content between the begin and end tag. * A set will replace any existing child controls with a single literal. * A get will return the text of a single literal child OR * will throw an exception if there are no children, more than one child, or * the single child is not a literal. */ ////// Gets or sets the /// content found between the opening and closing tags of the specified HTML server control. /// ////// [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), HtmlControlPersistable(false), ] public virtual string InnerText { get { return HttpUtility.HtmlDecode(InnerHtml); } set { InnerHtml = HttpUtility.HtmlEncode(value); } } ////// Gets or sets all text between the opening and closing tags /// of the specified HTML server control. /// ////// protected override ControlCollection CreateControlCollection() { return new ControlCollection(this); } ///[To be supplied.] ////// /// protected override void LoadViewState(object savedState) { if (savedState != null) { base.LoadViewState(savedState); string s = (string)ViewState["innerhtml"]; // Dev10 703061 If InnerHtml is set, we want to clear out any child controls, but not dirty viewstate if (s != null) { Controls.Clear(); Controls.Add(new LiteralControl(s)); } } } /* * Render the control into the given writer. */ ////// /// protected internal override void Render(HtmlTextWriter writer) { RenderBeginTag(writer); RenderChildren(writer); RenderEndTag(writer); } /* * Override to prevent InnerHtml from being rendered as an attribute. */ ////// /// protected override void RenderAttributes(HtmlTextWriter writer) { ViewState.Remove("innerhtml"); base.RenderAttributes(writer); } /* * Render the end tag, </TAGNAME>. */ ////// /// protected virtual void RenderEndTag(HtmlTextWriter writer) { writer.WriteEndTag(TagName); } } } // 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.Runtime.Serialization.Formatters; using System; using System.Collections; using System.ComponentModel; using System.IO; using System.Web.UI; using System.Security.Permissions; /* * A control representing an intrinsic Html tag. */ ////// abstract public class HtmlContainerControl : HtmlControl { /* * Creates a new WebControl */ ///The ////// class defines the methods, /// properties and events /// available to all Html Server controls that must have a /// closing tag. /// protected HtmlContainerControl() : this("span") { } /* * Creates a new HtmlContainerControl */ ///Initializes a new instance of a ///class using /// default values. /// public HtmlContainerControl(string tag) : base(tag) { } /* * The inner html content between the begin and end tag. * A set will replace any existing child controls with a single literal. * A get will return the text of a single literal child OR * will throw an exception if there are no children, more than one * child, or the single child is not a literal. */ ///Initializes a new instance of a ///class using the /// specified string. /// [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), HtmlControlPersistable(false), ] public virtual string InnerHtml { get { if (IsLiteralContent()) return((LiteralControl) Controls[0]).Text; else if (HasControls() && (Controls.Count == 1) && Controls[0] is DataBoundLiteralControl) return ((DataBoundLiteralControl) Controls[0]).Text; else { if (Controls.Count == 0) return String.Empty; throw new HttpException(SR.GetString(SR.Inner_Content_not_literal, ID)); } } set { Controls.Clear(); Controls.Add(new LiteralControl(value)); ViewState["innerhtml"] = value; } } /* * The inner text content between the begin and end tag. * A set will replace any existing child controls with a single literal. * A get will return the text of a single literal child OR * will throw an exception if there are no children, more than one child, or * the single child is not a literal. */ ////// Gets or sets the /// content found between the opening and closing tags of the specified HTML server control. /// ////// [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), HtmlControlPersistable(false), ] public virtual string InnerText { get { return HttpUtility.HtmlDecode(InnerHtml); } set { InnerHtml = HttpUtility.HtmlEncode(value); } } ////// Gets or sets all text between the opening and closing tags /// of the specified HTML server control. /// ////// protected override ControlCollection CreateControlCollection() { return new ControlCollection(this); } ///[To be supplied.] ////// /// protected override void LoadViewState(object savedState) { if (savedState != null) { base.LoadViewState(savedState); string s = (string)ViewState["innerhtml"]; // Dev10 703061 If InnerHtml is set, we want to clear out any child controls, but not dirty viewstate if (s != null) { Controls.Clear(); Controls.Add(new LiteralControl(s)); } } } /* * Render the control into the given writer. */ ////// /// protected internal override void Render(HtmlTextWriter writer) { RenderBeginTag(writer); RenderChildren(writer); RenderEndTag(writer); } /* * Override to prevent InnerHtml from being rendered as an attribute. */ ////// /// protected override void RenderAttributes(HtmlTextWriter writer) { ViewState.Remove("innerhtml"); base.RenderAttributes(writer); } /* * Render the end tag, </TAGNAME>. */ ////// /// protected virtual void RenderEndTag(HtmlTextWriter writer) { writer.WriteEndTag(TagName); } } } // 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
- SlotInfo.cs
- CellParagraph.cs
- NativeMethods.cs
- NetworkCredential.cs
- ConfigurationLocation.cs
- ToolBar.cs
- IndexedString.cs
- ZipIOBlockManager.cs
- CodeSnippetExpression.cs
- ProtocolElementCollection.cs
- BrushConverter.cs
- ObjectDataSourceFilteringEventArgs.cs
- SeparatorAutomationPeer.cs
- ConsumerConnectionPoint.cs
- RecommendedAsConfigurableAttribute.cs
- ListenerElementsCollection.cs
- DropShadowBitmapEffect.cs
- BitSet.cs
- XmlSchemaObjectCollection.cs
- DirectoryInfo.cs
- ConfigurationPropertyCollection.cs
- IImplicitResourceProvider.cs
- TreeNodeConverter.cs
- TripleDESCryptoServiceProvider.cs
- TextView.cs
- MulticastNotSupportedException.cs
- XmlSchemaFacet.cs
- _PooledStream.cs
- SqlDataSourceFilteringEventArgs.cs
- SqlError.cs
- SoapExtensionTypeElement.cs
- SettingsPropertyValueCollection.cs
- BadImageFormatException.cs
- Validator.cs
- BooleanExpr.cs
- DirectoryRedirect.cs
- InstanceHandleConflictException.cs
- AdornerLayer.cs
- OleDbConnectionInternal.cs
- ZipIOCentralDirectoryFileHeader.cs
- MiniAssembly.cs
- TemplateBaseAction.cs
- CodeExporter.cs
- EventRouteFactory.cs
- StorageRoot.cs
- ISAPIRuntime.cs
- BigInt.cs
- SchemaTableColumn.cs
- Frame.cs
- RotateTransform.cs
- X509RawDataKeyIdentifierClause.cs
- DateTimeSerializationSection.cs
- LocalizedNameDescriptionPair.cs
- NonSerializedAttribute.cs
- PeerResolver.cs
- wmiprovider.cs
- AssemblyInfo.cs
- CheckBoxStandardAdapter.cs
- ContractReference.cs
- ListControl.cs
- DecoderNLS.cs
- AlternationConverter.cs
- DateTimeStorage.cs
- PrintPreviewDialog.cs
- mansign.cs
- TransformValueSerializer.cs
- CodePropertyReferenceExpression.cs
- QualifiedCellIdBoolean.cs
- RNGCryptoServiceProvider.cs
- ListMarkerSourceInfo.cs
- XamlFigureLengthSerializer.cs
- AuthenticationSection.cs
- StreamInfo.cs
- StaticFileHandler.cs
- autovalidator.cs
- Clipboard.cs
- SqlStream.cs
- NavigateEvent.cs
- MatrixKeyFrameCollection.cs
- EndOfStreamException.cs
- SessionIDManager.cs
- MatchAllMessageFilter.cs
- ComponentGlyph.cs
- ContextMenuAutomationPeer.cs
- DbProviderFactories.cs
- PrintControllerWithStatusDialog.cs
- XmlObjectSerializerWriteContextComplex.cs
- DocumentApplication.cs
- ContractAdapter.cs
- XmlSchemaComplexContent.cs
- CaseInsensitiveOrdinalStringComparer.cs
- CodeGen.cs
- Unit.cs
- DataGridTextBoxColumn.cs
- ProviderSettings.cs
- DESCryptoServiceProvider.cs
- AssemblyCache.cs
- messageonlyhwndwrapper.cs
- FontStretch.cs
- UshortList2.cs