Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartEditorOkVerb.cs / 1305376 / 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.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MailAddress.cs
- CalendarDay.cs
- KeySpline.cs
- BoolExpr.cs
- StoreItemCollection.cs
- VirtualStackFrame.cs
- ConfigXmlWhitespace.cs
- SQLBinary.cs
- DEREncoding.cs
- ActivitySurrogateSelector.cs
- SelectionHighlightInfo.cs
- ToolStripPanelRenderEventArgs.cs
- TextSelectionHelper.cs
- Point3DAnimation.cs
- TypeUnloadedException.cs
- Component.cs
- MissingSatelliteAssemblyException.cs
- ListBindingHelper.cs
- FunctionGenerator.cs
- RedBlackList.cs
- Internal.cs
- LinkDescriptor.cs
- X509Certificate2.cs
- ColumnHeaderConverter.cs
- TextParaClient.cs
- Misc.cs
- ExpressionNode.cs
- isolationinterop.cs
- PageStatePersister.cs
- MimeMultiPart.cs
- WindowsTooltip.cs
- ReturnValue.cs
- HighlightComponent.cs
- ObjectStorage.cs
- StandardToolWindows.cs
- PackageFilter.cs
- PreservationFileReader.cs
- DynamicControl.cs
- ScrollProperties.cs
- ReadOnlyDataSourceView.cs
- InputReport.cs
- DtrList.cs
- GridViewSortEventArgs.cs
- VersionedStreamOwner.cs
- MemoryRecordBuffer.cs
- DataTrigger.cs
- DataGridBoolColumn.cs
- GenerateTemporaryTargetAssembly.cs
- control.ime.cs
- MimeTypeAttribute.cs
- Msec.cs
- Debug.cs
- RotationValidation.cs
- ViewLoader.cs
- QilInvokeEarlyBound.cs
- ScalarOps.cs
- CommandBindingCollection.cs
- PointAnimationUsingPath.cs
- XslVisitor.cs
- WorkflowRuntimeServiceElementCollection.cs
- RuntimeArgumentHandle.cs
- TextBox.cs
- Mapping.cs
- EncryptedXml.cs
- PopupRoot.cs
- UmAlQuraCalendar.cs
- ScrollProperties.cs
- RawTextInputReport.cs
- Accessible.cs
- TraceListener.cs
- UrlPath.cs
- ClientTarget.cs
- CrossContextChannel.cs
- DirectionalLight.cs
- Object.cs
- Conditional.cs
- Configuration.cs
- Sentence.cs
- LayoutManager.cs
- DataControlField.cs
- ActionFrame.cs
- ItemCollection.cs
- EdmConstants.cs
- SqlAggregateChecker.cs
- Util.cs
- ApplicationId.cs
- Int32Converter.cs
- ZeroOpNode.cs
- AssemblyBuilderData.cs
- RegexBoyerMoore.cs
- SecurityBindingElement.cs
- BypassElementCollection.cs
- BindingWorker.cs
- WindowsListViewGroup.cs
- StructureChangedEventArgs.cs
- RequestTimeoutManager.cs
- RangeValidator.cs
- ServiceContractDetailViewControl.cs
- HelpFileFileNameEditor.cs
- ZeroOpNode.cs