Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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)) { // 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. //------------------------------------------------------------------------------ //// 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)) { // 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConfigurationCollectionAttribute.cs
- Int32EqualityComparer.cs
- ObjectSecurity.cs
- CurrentChangingEventArgs.cs
- WebPartEditorCancelVerb.cs
- HtmlTextArea.cs
- SectionVisual.cs
- HttpChannelHelper.cs
- HtmlProps.cs
- sqlmetadatafactory.cs
- ADMembershipProvider.cs
- RIPEMD160Managed.cs
- IndexingContentUnit.cs
- SimpleFieldTemplateUserControl.cs
- FaultConverter.cs
- AllMembershipCondition.cs
- FixedPageAutomationPeer.cs
- WebPartDisplayModeEventArgs.cs
- DataGridViewLinkColumn.cs
- TableParagraph.cs
- SystemIPGlobalProperties.cs
- _ContextAwareResult.cs
- XmlLangPropertyAttribute.cs
- ButtonStandardAdapter.cs
- BitmapImage.cs
- DataGridViewTopLeftHeaderCell.cs
- ThousandthOfEmRealDoubles.cs
- BasicExpressionVisitor.cs
- SafeArrayRankMismatchException.cs
- XmlSecureResolver.cs
- DeploymentExceptionMapper.cs
- WebEvents.cs
- StylusOverProperty.cs
- HybridDictionary.cs
- NodeCounter.cs
- EventManager.cs
- RightsManagementPermission.cs
- NativeMethods.cs
- ChannelDemuxer.cs
- DataGridViewComponentPropertyGridSite.cs
- DbConnectionOptions.cs
- DeploymentSection.cs
- BitmapEffectInputData.cs
- AssociationSetEnd.cs
- BaseTemplateCodeDomTreeGenerator.cs
- HandlerFactoryCache.cs
- SerTrace.cs
- TemplateBindingExpression.cs
- PenThreadPool.cs
- SuppressMergeCheckAttribute.cs
- ControlEvent.cs
- ComPlusInstanceContextInitializer.cs
- KeyValuePairs.cs
- Deserializer.cs
- MdiWindowListStrip.cs
- SimpleApplicationHost.cs
- ExpressionBindingCollection.cs
- MemberRestriction.cs
- AnimationTimeline.cs
- propertyentry.cs
- ScopeCompiler.cs
- XhtmlCssHandler.cs
- ViewBox.cs
- SamlAuthorizationDecisionClaimResource.cs
- ComplusEndpointConfigContainer.cs
- GuidConverter.cs
- CodeAssignStatement.cs
- ChangePasswordDesigner.cs
- SafeArchiveContext.cs
- SolidColorBrush.cs
- FileController.cs
- COM2EnumConverter.cs
- MachineKeyConverter.cs
- SimpleTypeResolver.cs
- CharacterHit.cs
- FullTrustAssembly.cs
- DecimalConstantAttribute.cs
- ListControlConvertEventArgs.cs
- GlyphsSerializer.cs
- HttpRawResponse.cs
- RowSpanVector.cs
- TreeNodeBinding.cs
- EntityTypeEmitter.cs
- JsonXmlDataContract.cs
- XmlIlGenerator.cs
- EventMap.cs
- Token.cs
- ParameterExpression.cs
- EnumerableRowCollection.cs
- UIElementIsland.cs
- StreamGeometry.cs
- ViewStateException.cs
- SoapFormatter.cs
- XmlNodeReader.cs
- CodeBinaryOperatorExpression.cs
- DataGridViewColumnCollectionDialog.cs
- AddingNewEventArgs.cs
- StylusSystemGestureEventArgs.cs
- ValidationManager.cs
- GradientBrush.cs