Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / UI / RegisteredHiddenField.cs / 1305376 / RegisteredHiddenField.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Diagnostics; public sealed class RegisteredHiddenField { private Control _control; private string _name; private string _initialValue; internal RegisteredHiddenField(Control control, string hiddenFieldName, string hiddenFieldInitialValue) { Debug.Assert(control != null); Debug.Assert(hiddenFieldName != null); _control = control; _name = hiddenFieldName; _initialValue = hiddenFieldInitialValue; } public Control Control { get { return _control; } } public string InitialValue { get { // may be null return _initialValue; } } public string Name { get { return _name; } } } } // 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
- DoubleLinkList.cs
- DataContractSerializerSection.cs
- ProfileGroupSettings.cs
- PerformanceCounterPermission.cs
- ApplicationSecurityInfo.cs
- BitmapVisualManager.cs
- RangeValueProviderWrapper.cs
- HuffmanTree.cs
- MasterPage.cs
- Pair.cs
- InputProcessorProfiles.cs
- DataChangedEventManager.cs
- MethodResolver.cs
- PropertyKey.cs
- HeaderElement.cs
- DeclarationUpdate.cs
- ServiceHttpModule.cs
- PtsContext.cs
- SortedSetDebugView.cs
- ArrayWithOffset.cs
- ParserContext.cs
- SecurityManager.cs
- PasswordTextContainer.cs
- DataTableReader.cs
- Lease.cs
- NamespaceMapping.cs
- BrowserCapabilitiesFactory35.cs
- Schema.cs
- MappingException.cs
- TableCell.cs
- ReferencedAssemblyResolver.cs
- ControlType.cs
- WebPartVerbsEventArgs.cs
- ValidatorAttribute.cs
- NullReferenceException.cs
- TraceHandlerErrorFormatter.cs
- Baml6ConstructorInfo.cs
- VariableDesigner.xaml.cs
- UnaryExpression.cs
- ScalarOps.cs
- BaseCodePageEncoding.cs
- ToolStripItemDataObject.cs
- BackgroundWorker.cs
- AttributeData.cs
- SocketPermission.cs
- HMACMD5.cs
- MULTI_QI.cs
- QueryOpeningEnumerator.cs
- OrderingExpression.cs
- WebPartsPersonalizationAuthorization.cs
- TdsValueSetter.cs
- BlockCollection.cs
- CommentEmitter.cs
- TransformedBitmap.cs
- SectionXmlInfo.cs
- Int16.cs
- SystemColors.cs
- PasswordTextNavigator.cs
- ButtonBaseAutomationPeer.cs
- TaskCanceledException.cs
- ComAdminInterfaces.cs
- BindingExpressionUncommonField.cs
- Slider.cs
- LayoutTableCell.cs
- ApplicationException.cs
- SystemColors.cs
- Label.cs
- AppSettings.cs
- MimeMapping.cs
- PagedDataSource.cs
- CultureInfoConverter.cs
- FileRecordSequenceHelper.cs
- CheckedPointers.cs
- ServicePointManager.cs
- DateTimeFormat.cs
- Component.cs
- SystemGatewayIPAddressInformation.cs
- TouchPoint.cs
- InputScopeAttribute.cs
- SaveFileDialog.cs
- Clock.cs
- XMLSyntaxException.cs
- UrlPath.cs
- WeakReferenceKey.cs
- VariableDesigner.xaml.cs
- sapiproxy.cs
- DetailsViewInsertEventArgs.cs
- _SpnDictionary.cs
- ConnectionPoolManager.cs
- CompositeDispatchFormatter.cs
- ObjectPersistData.cs
- TransformerInfoCollection.cs
- Section.cs
- SQLMembershipProvider.cs
- HttpSocketManager.cs
- XmlNodeComparer.cs
- TextFragmentEngine.cs
- XPathExpr.cs
- NullableFloatAverageAggregationOperator.cs
- XmlStringTable.cs