Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TaiwanLunisolarCalendar.cs
- WebBrowserNavigatedEventHandler.cs
- StateDesigner.Helpers.cs
- RequestCacheManager.cs
- TextElementEnumerator.cs
- EdmProviderManifest.cs
- RemotingException.cs
- DbQueryCommandTree.cs
- ScrollEventArgs.cs
- CodeNamespace.cs
- FormatVersion.cs
- RequestContextBase.cs
- SystemResourceKey.cs
- SharedPersonalizationStateInfo.cs
- WebServiceBindingAttribute.cs
- NamedObject.cs
- BeginSelectCardRequest.cs
- UriSectionReader.cs
- ItemsChangedEventArgs.cs
- PocoPropertyAccessorStrategy.cs
- ServicePoint.cs
- ChannelBinding.cs
- Panel.cs
- TabPageDesigner.cs
- SoapHeaderException.cs
- FixedSOMPageConstructor.cs
- MeshGeometry3D.cs
- MediaElementAutomationPeer.cs
- StatusStrip.cs
- DataGridViewSelectedColumnCollection.cs
- SessionEndingEventArgs.cs
- MsmqActivation.cs
- DiscriminatorMap.cs
- ArraySortHelper.cs
- TableRow.cs
- FamilyTypefaceCollection.cs
- _ConnectStream.cs
- ClientProxyGenerator.cs
- XsltArgumentList.cs
- WindowsComboBox.cs
- XPathQilFactory.cs
- BitmapEditor.cs
- CheckedListBox.cs
- ILGenerator.cs
- ByteBufferPool.cs
- ContentPosition.cs
- UnsafeNativeMethods.cs
- MouseGesture.cs
- SafeFileMapViewHandle.cs
- DictionaryMarkupSerializer.cs
- MetadataArtifactLoaderFile.cs
- EventLogSession.cs
- XmlTextReaderImplHelpers.cs
- EventlogProvider.cs
- MappingItemCollection.cs
- GcSettings.cs
- ModelPerspective.cs
- versioninfo.cs
- SizeAnimationClockResource.cs
- NoPersistHandle.cs
- DataControlFieldHeaderCell.cs
- TemplateBindingExpression.cs
- CodePageUtils.cs
- LockCookie.cs
- Win32PrintDialog.cs
- ProcessProtocolHandler.cs
- XmlAttributeCache.cs
- DataGridViewElement.cs
- SystemResources.cs
- ItemCheckEvent.cs
- TextAutomationPeer.cs
- ContextMenu.cs
- WebServiceHandlerFactory.cs
- ApplicationInfo.cs
- _Semaphore.cs
- HiddenFieldPageStatePersister.cs
- Native.cs
- OperationCanceledException.cs
- CompositionTarget.cs
- IPCCacheManager.cs
- ADMembershipProvider.cs
- ServiceHttpModule.cs
- GridView.cs
- __Filters.cs
- UnsafeNativeMethods.cs
- FunctionImportMapping.cs
- EventLogPermissionEntryCollection.cs
- CancellationState.cs
- ConvertEvent.cs
- DataGridViewRowEventArgs.cs
- UIElement.cs
- Duration.cs
- MatrixConverter.cs
- XmlCDATASection.cs
- ConditionChanges.cs
- SchemaEntity.cs
- DBDataPermissionAttribute.cs
- WsatServiceAddress.cs
- activationcontext.cs
- UnwrappedTypesXmlSerializerManager.cs