Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlImage.cs / 1 / HtmlImage.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * HtmlImage.cs * * Copyright (c) 2000 Microsoft Corporation */ namespace System.Web.UI.HtmlControls { using System; using System.Globalization; using System.Collections; using System.ComponentModel; using System.Web; using System.Web.UI; using System.Security.Permissions; ////// [ ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder)) ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class HtmlImage : HtmlControl { /* * Creates an intrinsic Html IMG control. */ ////// The ////// class defines the methods, properties, and events /// for the HtmlImage server control. /// This class provides programmatic access on the server to /// the HTML <img> element. /// /// public HtmlImage() : base("img") { } /* * Alt property */ ///Initializes a new instance of the ///class. /// [ WebCategory("Appearance"), Localizable(true), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public string Alt { get { string s = Attributes["alt"]; return((s != null) ? s : String.Empty); } set { Attributes["alt"] = MapStringAttributeToString(value); } } /* * Align property */ ////// Gets or sets the alternative caption that the /// browser displays if image is either unavailable or has not been downloaded yet. /// ////// [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public string Align { get { string s = Attributes["align"]; return((s != null) ? s : String.Empty); } set { Attributes["align"] = MapStringAttributeToString(value); } } /* * Border property, size of border in pixels. */ ///Gets or sets the alignment of the image with /// surrounding text. ////// [ WebCategory("Appearance"), DefaultValue(0), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public int Border { get { string s = Attributes["border"]; return((s != null) ? Int32.Parse(s, CultureInfo.InvariantCulture) : -1); } set { Attributes["border"] = MapIntegerAttributeToString(value); } } /* * Height property */ ////// Gets or sets the width of image border, in pixels. /// ////// [ WebCategory("Layout"), DefaultValue(100), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public int Height { get { string s = Attributes["height"]; return((s != null) ? Int32.Parse(s, CultureInfo.InvariantCulture) : -1); } set { Attributes["height"] = MapIntegerAttributeToString(value); } } /* * Src property. */ ////// Gets or sets /// the height of the image. By default, this is expressed in /// pixels, /// but can be a expressed as a percentage. /// ////// [ WebCategory("Behavior"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), UrlProperty() ] public string Src { get { string s = Attributes["src"]; return((s != null) ? s : String.Empty); } set { Attributes["src"] = MapStringAttributeToString(value); } } /* * Width property */ ////// Gets or sets the name of and path to the /// image file to be displayed. This can be an absolute or /// relative path. /// ////// [ WebCategory("Layout"), DefaultValue(100), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public int Width { get { string s = Attributes["width"]; return((s != null) ? Int32.Parse(s, CultureInfo.InvariantCulture) : -1); } set { Attributes["width"] = MapIntegerAttributeToString(value); } } /* * Override to render unique name attribute. * The name attribute is owned by the framework. */ ////// Gets or sets the width of the image. By default, this is /// expressed in pixels, /// but can be a expressed as a percentage. /// ////// /// protected override void RenderAttributes(HtmlTextWriter writer) { PreProcessRelativeReferenceAttribute(writer, "src"); base.RenderAttributes(writer); writer.Write(" /"); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Highlights.cs
- Profiler.cs
- AbstractExpressions.cs
- CacheHelper.cs
- BindableTemplateBuilder.cs
- FormatterConverter.cs
- XmlSchemaAnyAttribute.cs
- XmlReflectionMember.cs
- ParentQuery.cs
- GridViewRowCollection.cs
- WebBrowserEvent.cs
- RoutedEventHandlerInfo.cs
- DesignerLinkAdapter.cs
- ShutDownListener.cs
- webeventbuffer.cs
- ConfigXmlDocument.cs
- SortKey.cs
- AuthenticationException.cs
- Propagator.Evaluator.cs
- TypeToken.cs
- CharacterMetrics.cs
- _SSPISessionCache.cs
- UInt32.cs
- CodeIndexerExpression.cs
- Utils.cs
- CollectionEditVerbManager.cs
- PageEventArgs.cs
- HScrollBar.cs
- EmptyQuery.cs
- CompatibleIComparer.cs
- UnescapedXmlDiagnosticData.cs
- ButtonField.cs
- AutomationAttributeInfo.cs
- DataSourceControl.cs
- TransactionWaitAsyncResult.cs
- QilScopedVisitor.cs
- XmlSubtreeReader.cs
- WindowsListViewGroupHelper.cs
- LinqDataSourceInsertEventArgs.cs
- Aes.cs
- Metafile.cs
- DelayDesigner.cs
- RuleCache.cs
- OutputCacheSettingsSection.cs
- IxmlLineInfo.cs
- SctClaimSerializer.cs
- ToggleButtonAutomationPeer.cs
- FrameworkName.cs
- DomainUpDown.cs
- XmlReflectionMember.cs
- ToolBar.cs
- SqlNotificationEventArgs.cs
- BuildManagerHost.cs
- SystemIPGlobalProperties.cs
- CalendarAutomationPeer.cs
- AudioStateChangedEventArgs.cs
- LoadRetryStrategyFactory.cs
- HandledMouseEvent.cs
- WmlLinkAdapter.cs
- WorkflowServiceBuildProvider.cs
- LocatorGroup.cs
- SelfIssuedAuthRSACryptoProvider.cs
- LabelEditEvent.cs
- GridViewCancelEditEventArgs.cs
- HebrewNumber.cs
- WindowCollection.cs
- RightNameExpirationInfoPair.cs
- PersonalizationProvider.cs
- SchemaDeclBase.cs
- NativeActivityAbortContext.cs
- MimeFormReflector.cs
- BamlLocalizableResource.cs
- DisableDpiAwarenessAttribute.cs
- TraceRecord.cs
- NameTable.cs
- ImageAutomationPeer.cs
- UpdatableGenericsFeature.cs
- LambdaCompiler.Logical.cs
- DoubleLinkList.cs
- DocumentViewerAutomationPeer.cs
- DataListItemEventArgs.cs
- OAVariantLib.cs
- ByteConverter.cs
- TextViewElement.cs
- MembershipSection.cs
- SeparatorAutomationPeer.cs
- BamlTreeMap.cs
- DoubleCollection.cs
- TakeOrSkipWhileQueryOperator.cs
- OleDbFactory.cs
- TimeZone.cs
- TabletCollection.cs
- ISCIIEncoding.cs
- followingsibling.cs
- BaseTemplateBuildProvider.cs
- Rules.cs
- TabItem.cs
- FlowDocument.cs
- TransactionScope.cs
- TrackingDataItem.cs