Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartEditorOkVerb.cs / 1 / WebPartEditorOkVerb.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; internal sealed class WebPartEditorOKVerb : WebPartActionVerb { // Properties must look at viewstate directly instead of the property in the base class, // so we can distinguish between an unset property and a property set to String.Empty. [ WebSysDefaultValue(SR.WebPartEditorOKVerb_Description) ] public override string Description { get { object o = ViewState["Description"]; return (o == null) ? SR.GetString(SR.WebPartEditorOKVerb_Description) : (string)o; } set { ViewState["Description"] = value; } } [ WebSysDefaultValue(SR.WebPartEditorOKVerb_Text) ] public override string Text { get { object o = ViewState["Text"]; return (o == null) ? SR.GetString(SR.WebPartEditorOKVerb_Text) : (string)o; } set { ViewState["Text"] = value; } } } } // 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
- Boolean.cs
- FormsAuthenticationConfiguration.cs
- WsdlImporter.cs
- ToolTipService.cs
- Properties.cs
- SecureEnvironment.cs
- SecurityKeyUsage.cs
- CodeTypeReferenceCollection.cs
- StaticSiteMapProvider.cs
- SizeLimitedCache.cs
- GeneralTransform.cs
- TextElementEnumerator.cs
- XmlQueryOutput.cs
- SqlGatherConsumedAliases.cs
- ObjectSpanRewriter.cs
- IndentedTextWriter.cs
- Size3DValueSerializer.cs
- UpdateTracker.cs
- HtmlContainerControl.cs
- Stackframe.cs
- StringFreezingAttribute.cs
- ExpressionReplacer.cs
- XmlSchemaProviderAttribute.cs
- TreeViewCancelEvent.cs
- Literal.cs
- HtmlAnchor.cs
- HttpWebRequestElement.cs
- NullableConverter.cs
- DoWhile.cs
- XmlSchemaSimpleContent.cs
- OleDbDataReader.cs
- AgileSafeNativeMemoryHandle.cs
- NavigationService.cs
- ContentTextAutomationPeer.cs
- IntranetCredentialPolicy.cs
- DialogResultConverter.cs
- SystemColors.cs
- AuthenticationSection.cs
- WeakKeyDictionary.cs
- BooleanStorage.cs
- TabItemAutomationPeer.cs
- ItemCollection.cs
- HtmlUtf8RawTextWriter.cs
- LinkedResource.cs
- SqlClientFactory.cs
- DataGridSortCommandEventArgs.cs
- BasicExpandProvider.cs
- CollectionBuilder.cs
- ProcessStartInfo.cs
- BaseConfigurationRecord.cs
- Matrix3D.cs
- Root.cs
- DataServiceQueryProvider.cs
- VectorAnimationBase.cs
- Visitors.cs
- PageCatalogPart.cs
- OneOfConst.cs
- SelectionUIService.cs
- ComboBoxItem.cs
- ScriptControlManager.cs
- Debugger.cs
- shaper.cs
- ISAPIApplicationHost.cs
- OdbcParameter.cs
- PropertyToken.cs
- AllMembershipCondition.cs
- PermissionAttributes.cs
- PageOutputColor.cs
- FormsAuthenticationConfiguration.cs
- tooltip.cs
- OleDbTransaction.cs
- ActiveXHost.cs
- EncryptedReference.cs
- ObjectSet.cs
- ColorKeyFrameCollection.cs
- ErrorHandlingAcceptor.cs
- FilterEventArgs.cs
- DataGridItem.cs
- Converter.cs
- DynamicValueConverter.cs
- ConstraintConverter.cs
- DataControlHelper.cs
- TemplateLookupAction.cs
- ConfigurationSchemaErrors.cs
- SemanticBasicElement.cs
- EventRoute.cs
- NotFiniteNumberException.cs
- SymbolResolver.cs
- DebuggerAttributes.cs
- NameValueConfigurationElement.cs
- Pts.cs
- RbTree.cs
- InputScopeAttribute.cs
- AssemblyInfo.cs
- WeakReferenceKey.cs
- ObjectParameter.cs
- LogicalExpr.cs
- NamedPipeHostedTransportConfiguration.cs
- NameValuePair.cs
- MarkupExtensionReturnTypeAttribute.cs