Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / WebControls / LoginName.cs / 1 / LoginName.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.ComponentModel; using System.Globalization; using System.Security.Permissions; using System.Security.Principal; using System.Web.UI; using System.Web; ////// Renders a Label containing the name of the current user, as defined by the FormatString property. /// Renders nothing if the current user is anonymous. /// [ Bindable(false), Designer("System.Web.UI.Design.WebControls.LoginNameDesigner," + AssemblyRef.SystemDesign), DefaultProperty("FormatString") ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class LoginName : WebControl { private const string _defaultFormatString = "{0}"; ////// The format specification. {0} is replaced with the user name of the logged in user. /// [ WebCategory("Appearance"), DefaultValue(_defaultFormatString), Localizable(true), WebSysDescription(SR.LoginName_FormatString) ] public virtual string FormatString { get { object obj = ViewState["FormatString"]; return (obj == null) ? _defaultFormatString : (string) obj; } set { ViewState["FormatString"] = value; } } internal string UserName { get { if (DesignMode) { return SR.GetString(SR.LoginName_DesignModeUserName); } else { return LoginUtil.GetUserName(this); } } } protected internal override void Render(HtmlTextWriter writer) { if (!String.IsNullOrEmpty(UserName)) { base.Render(writer); } } public override void RenderBeginTag(HtmlTextWriter writer) { // Needed for adapter case to prevent empty span tags if (!String.IsNullOrEmpty(UserName)) { base.RenderBeginTag(writer); } } public override void RenderEndTag(HtmlTextWriter writer) { // Needed for adapter case to prevent empty span tags if (!String.IsNullOrEmpty(UserName)) { base.RenderEndTag(writer); } } ////// Styles would be rendered by the WebControl base class. /// protected internal override void RenderContents(HtmlTextWriter writer) { string userName = UserName; if (!String.IsNullOrEmpty(userName)) { // VSWhidbey 304890 HTMLEncode the username userName = HttpUtility.HtmlEncode(userName); string formatString = FormatString; if (formatString.Length == 0) { writer.Write(userName); } else { try { writer.Write(String.Format(CultureInfo.CurrentCulture, formatString, userName)); } catch (FormatException e) { throw new FormatException(SR.GetString(SR.LoginName_InvalidFormatString), e); } } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.ComponentModel; using System.Globalization; using System.Security.Permissions; using System.Security.Principal; using System.Web.UI; using System.Web; ////// Renders a Label containing the name of the current user, as defined by the FormatString property. /// Renders nothing if the current user is anonymous. /// [ Bindable(false), Designer("System.Web.UI.Design.WebControls.LoginNameDesigner," + AssemblyRef.SystemDesign), DefaultProperty("FormatString") ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class LoginName : WebControl { private const string _defaultFormatString = "{0}"; ////// The format specification. {0} is replaced with the user name of the logged in user. /// [ WebCategory("Appearance"), DefaultValue(_defaultFormatString), Localizable(true), WebSysDescription(SR.LoginName_FormatString) ] public virtual string FormatString { get { object obj = ViewState["FormatString"]; return (obj == null) ? _defaultFormatString : (string) obj; } set { ViewState["FormatString"] = value; } } internal string UserName { get { if (DesignMode) { return SR.GetString(SR.LoginName_DesignModeUserName); } else { return LoginUtil.GetUserName(this); } } } protected internal override void Render(HtmlTextWriter writer) { if (!String.IsNullOrEmpty(UserName)) { base.Render(writer); } } public override void RenderBeginTag(HtmlTextWriter writer) { // Needed for adapter case to prevent empty span tags if (!String.IsNullOrEmpty(UserName)) { base.RenderBeginTag(writer); } } public override void RenderEndTag(HtmlTextWriter writer) { // Needed for adapter case to prevent empty span tags if (!String.IsNullOrEmpty(UserName)) { base.RenderEndTag(writer); } } ////// Styles would be rendered by the WebControl base class. /// protected internal override void RenderContents(HtmlTextWriter writer) { string userName = UserName; if (!String.IsNullOrEmpty(userName)) { // VSWhidbey 304890 HTMLEncode the username userName = HttpUtility.HtmlEncode(userName); string formatString = FormatString; if (formatString.Length == 0) { writer.Write(userName); } else { try { writer.Write(String.Format(CultureInfo.CurrentCulture, formatString, userName)); } catch (FormatException e) { throw new FormatException(SR.GetString(SR.LoginName_InvalidFormatString), e); } } } } } } // 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
- DefaultShape.cs
- VirtualPath.cs
- UIElement3D.cs
- BaseCollection.cs
- PathFigureCollection.cs
- CompilationUnit.cs
- RectangleGeometry.cs
- SqlNode.cs
- SqlHelper.cs
- AttachmentService.cs
- VisualTarget.cs
- PersonalizationStateQuery.cs
- XmlUtil.cs
- SecurityKeyIdentifier.cs
- UnsafeNativeMethods.cs
- RangeValuePatternIdentifiers.cs
- DiscoveryMessageSequenceGenerator.cs
- ImageMapEventArgs.cs
- HistoryEventArgs.cs
- ContentIterators.cs
- MemoryFailPoint.cs
- ExtenderControl.cs
- DetailsViewInsertEventArgs.cs
- TableLayoutStyle.cs
- TriggerActionCollection.cs
- BackgroundFormatInfo.cs
- MemberRelationshipService.cs
- GraphicsContext.cs
- PropertyMapper.cs
- ArrayWithOffset.cs
- TextDecorationCollection.cs
- ImageDrawing.cs
- XmlQualifiedName.cs
- UpdatePanelTriggerCollection.cs
- ResolveNameEventArgs.cs
- PropertyFilterAttribute.cs
- DocumentPage.cs
- NetworkInformationException.cs
- SelectionHighlightInfo.cs
- ExtensionSimplifierMarkupObject.cs
- XmlSchemaAnnotated.cs
- HtmlContainerControl.cs
- RequestDescription.cs
- MembershipValidatePasswordEventArgs.cs
- TableLayoutSettings.cs
- DbQueryCommandTree.cs
- NativeObjectSecurity.cs
- CorePropertiesFilter.cs
- Misc.cs
- MruCache.cs
- ConfigurationPropertyAttribute.cs
- HiddenFieldPageStatePersister.cs
- ButtonDesigner.cs
- CompilerLocalReference.cs
- LinearKeyFrames.cs
- UIAgentInitializationException.cs
- EntityContainerEmitter.cs
- EdmItemError.cs
- DependencyPropertyKey.cs
- RegularExpressionValidator.cs
- CodeEntryPointMethod.cs
- TypedTableGenerator.cs
- CharacterBuffer.cs
- RadioButtonList.cs
- DynamicResourceExtension.cs
- SamlAuthorizationDecisionStatement.cs
- XPathScanner.cs
- GenericTypeParameterBuilder.cs
- UserControlParser.cs
- TableLayoutStyleCollection.cs
- ProxyElement.cs
- Bitmap.cs
- InheritanceContextHelper.cs
- ThreadAttributes.cs
- ObjectNavigationPropertyMapping.cs
- WinEventTracker.cs
- InfoCardSymmetricCrypto.cs
- ServiceContractListItemList.cs
- BindingContext.cs
- MobileControlsSectionHandler.cs
- DataGridViewCellCancelEventArgs.cs
- Codec.cs
- PeerServiceMessageContracts.cs
- IIS7UserPrincipal.cs
- NameTable.cs
- PriorityBindingExpression.cs
- ContextProperty.cs
- DetailsViewDeletedEventArgs.cs
- Camera.cs
- PrincipalPermission.cs
- DataServiceClientException.cs
- ChtmlCalendarAdapter.cs
- XmlSerializationWriter.cs
- ScriptResourceInfo.cs
- _KerberosClient.cs
- XPathAxisIterator.cs
- ObjectConverter.cs
- ThreadAbortException.cs
- MemoryFailPoint.cs
- DateTimePicker.cs