Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / DynamicData / DynamicData / DynamicEntity.cs / 1305376 / DynamicEntity.cs
using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Drawing; using System.Globalization; using System.Web.DynamicData.Util; using System.Web.Resources; using System.Web.UI; using System.Web.UI.WebControls; namespace System.Web.DynamicData { [ToolboxBitmap(typeof(DynamicEntity), "DynamicEntity.bmp")] public class DynamicEntity : Control { private HttpContextBase _context; [ DefaultValue(DataBoundControlMode.ReadOnly), Category("Behavior"), ResourceDescription("DynamicEntity_Mode") ] public DataBoundControlMode Mode { get { var value = ViewState["Mode"]; return value != null ? (DataBoundControlMode)value : DataBoundControlMode.ReadOnly; } set { ViewState["Mode"] = value; } } [ DefaultValue(""), Category("Behavior"), ResourceDescription("DynamicControlFieldCommon_UIHint") ] public string UIHint { get { return (string)ViewState["UIHint"] ?? String.Empty; } set { ViewState["UIHint"] = value; } } [ Category("Behavior"), DefaultValue(""), Themeable(false), ResourceDescription("DynamicControlFieldCommon_ValidationGroup") ] public string ValidationGroup { get { return (string)ViewState["ValidationGroup"] ?? String.Empty; } set { ViewState["ValidationGroup"] = value; } } private new HttpContextBase Context { get { return _context ?? new HttpContextWrapper(HttpContext.Current); } } public DynamicEntity() { } // for unit testing internal DynamicEntity(HttpContextBase context) : this() { _context = context; } [SuppressMessage("Microsoft.Security", "CA2109:ReviewVisibleEventHandlers", MessageId = "0#")] protected override void OnLoad(EventArgs e) { base.OnLoad(e); if (DesignMode) { return; } MetaTable table = MetaTableHelper.FindMetaTable(this, Context); if (table == null) { throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, DynamicDataResources.DynamicEntity_ControlNeedsToExistInAContextSupportingDynamicData, this.ID)); } EntityTemplateFactory entityTemplateFactory = table.Model.EntityTemplateFactory; EntityTemplateUserControl entityTemplateControl = entityTemplateFactory.CreateEntityTemplate(table, Mode, UIHint); if (entityTemplateControl == null) { throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, DynamicDataResources.DynamicEntity_CantFindTemplate, table.Name, entityTemplateFactory.TemplateFolderVirtualPath)); } entityTemplateControl.Mode = Mode; entityTemplateControl.ValidationGroup = ValidationGroup; entityTemplateControl.Table = table; Controls.Add(entityTemplateControl); } protected override void Render(HtmlTextWriter writer) { if (DesignMode) { writer.Write("[" + GetType().Name + "]"); } else { base.Render(writer); } } } } // 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
- FontInfo.cs
- HtmlInputText.cs
- CommentGlyph.cs
- FreeFormDragDropManager.cs
- PointAnimationUsingKeyFrames.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- Composition.cs
- HideDisabledControlAdapter.cs
- WhileDesigner.xaml.cs
- MetadataArtifactLoaderResource.cs
- SystemColorTracker.cs
- listitem.cs
- RepeaterItemEventArgs.cs
- HttpModulesSection.cs
- Pointer.cs
- ContentPathSegment.cs
- DataGridViewRowEventArgs.cs
- OdbcReferenceCollection.cs
- FormatConvertedBitmap.cs
- ChannelManager.cs
- EntityKeyElement.cs
- SqlCommandBuilder.cs
- sqlnorm.cs
- _Events.cs
- EventLogPermission.cs
- Restrictions.cs
- TypeBuilder.cs
- Lease.cs
- NetMsmqSecurityMode.cs
- VariableAction.cs
- ValidationSummary.cs
- Condition.cs
- MsmqIntegrationProcessProtocolHandler.cs
- EndpointAddress.cs
- CurrencyWrapper.cs
- HandleCollector.cs
- FixedDocument.cs
- UdpMessageProperty.cs
- RuleAttributes.cs
- SecurityImpersonationBehavior.cs
- ItemAutomationPeer.cs
- Point3DKeyFrameCollection.cs
- SignatureDescription.cs
- DataBindingCollection.cs
- PlanCompiler.cs
- SpeechSynthesizer.cs
- CodeNamespaceImport.cs
- PageThemeCodeDomTreeGenerator.cs
- FreezableOperations.cs
- DataStreams.cs
- GridViewColumnCollection.cs
- AttributeSetAction.cs
- BitmapEffectrendercontext.cs
- WebPageTraceListener.cs
- DerivedKeySecurityTokenStub.cs
- MediaPlayerState.cs
- ServiceModelInstallComponent.cs
- TextClipboardData.cs
- xml.cs
- StreamReader.cs
- IDQuery.cs
- _FtpDataStream.cs
- ClonableStack.cs
- XmlCustomFormatter.cs
- BinaryMessageEncodingBindingElement.cs
- ThreadTrace.cs
- IERequestCache.cs
- ContainerControl.cs
- RemotingService.cs
- AvTrace.cs
- DbMetaDataCollectionNames.cs
- EditorAttributeInfo.cs
- UniqueEventHelper.cs
- SchemaTypeEmitter.cs
- TrackingParameters.cs
- SaveFileDialog.cs
- MethodBuilderInstantiation.cs
- SolidBrush.cs
- Base64Encoder.cs
- HeaderedItemsControl.cs
- HttpRequest.cs
- ExpressionEditorAttribute.cs
- ControlCachePolicy.cs
- ManagedIStream.cs
- CurrencyWrapper.cs
- DbConvert.cs
- DataControlFieldHeaderCell.cs
- HighlightVisual.cs
- RectangleHotSpot.cs
- BooleanKeyFrameCollection.cs
- CultureInfo.cs
- EdmSchemaError.cs
- MimeMultiPart.cs
- Query.cs
- ObjectReferenceStack.cs
- NotCondition.cs
- RuntimeEnvironment.cs
- ToolStripDropDownDesigner.cs
- XmlReaderSettings.cs
- UIElement3D.cs