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
- TouchesCapturedWithinProperty.cs
- UserNameSecurityToken.cs
- XmlQualifiedName.cs
- SerialReceived.cs
- DocumentOutline.cs
- ObjectDataSourceView.cs
- HandleRef.cs
- ImportCatalogPart.cs
- UrlAuthFailedErrorFormatter.cs
- MemberDescriptor.cs
- ObjectQueryProvider.cs
- Control.cs
- ProxyElement.cs
- CheckBoxStandardAdapter.cs
- DateTimeSerializationSection.cs
- EventLogger.cs
- DataGridViewCellLinkedList.cs
- ContextDataSourceContextData.cs
- BamlBinaryWriter.cs
- ImageMetadata.cs
- Html32TextWriter.cs
- XmlILIndex.cs
- Transactions.cs
- DataView.cs
- ModelVisual3D.cs
- StringArrayEditor.cs
- FileRecordSequenceCompletedAsyncResult.cs
- SqlDataSourceStatusEventArgs.cs
- PropertyPath.cs
- X509Certificate2.cs
- RuleEngine.cs
- EncryptedKey.cs
- ValidationError.cs
- ExpressionVisitor.cs
- ValidatingReaderNodeData.cs
- EtwTrace.cs
- ContentPlaceHolder.cs
- SortableBindingList.cs
- HelpFileFileNameEditor.cs
- BroadcastEventHelper.cs
- IssuedTokenParametersEndpointAddressElement.cs
- FigureParagraph.cs
- mactripleDES.cs
- RemoteWebConfigurationHostStream.cs
- FixedSOMImage.cs
- UTF32Encoding.cs
- PersonalizationStateInfoCollection.cs
- Query.cs
- ExpressionBuilder.cs
- ApplicationId.cs
- HtmlAnchor.cs
- PreProcessInputEventArgs.cs
- DataGridViewTopRowAccessibleObject.cs
- WebReferencesBuildProvider.cs
- PngBitmapDecoder.cs
- UTF7Encoding.cs
- CardSpaceSelector.cs
- WsatEtwTraceListener.cs
- FlowDocumentScrollViewer.cs
- XPathNavigatorKeyComparer.cs
- DesignerHost.cs
- CompilerInfo.cs
- StringInfo.cs
- TdsParserSafeHandles.cs
- XamlSerializerUtil.cs
- HostingEnvironmentException.cs
- RijndaelManaged.cs
- ReceiveMessageContent.cs
- FormViewUpdateEventArgs.cs
- ControlCachePolicy.cs
- WorkflowElementDialog.cs
- TextEditorTables.cs
- DataGridViewComboBoxCell.cs
- ToolBarButtonClickEvent.cs
- PersonalizationDictionary.cs
- CreateUserWizardStep.cs
- TextRange.cs
- LambdaCompiler.Unary.cs
- SubpageParagraph.cs
- StreamGeometry.cs
- CheckedPointers.cs
- QuestionEventArgs.cs
- TripleDESCryptoServiceProvider.cs
- BooleanExpr.cs
- ThreadAbortException.cs
- IgnoreDeviceFilterElementCollection.cs
- OrderByLifter.cs
- Parser.cs
- Line.cs
- DataGridViewRow.cs
- TypeUnloadedException.cs
- DBSqlParser.cs
- DataBinding.cs
- SchemaElementDecl.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- AddInEnvironment.cs
- GroupDescription.cs
- Form.cs
- LabelLiteral.cs
- ListItem.cs