Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / WebControls / AccessDataSourceDesigner.cs / 1 / AccessDataSourceDesigner.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.WebControls { using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Data; using System.Data.Common; using System.ComponentModel.Design.Data; using System.Design; using System.Diagnostics; using System.Drawing.Design; using System.IO; using System.Web.UI; using System.Web.UI.Design; using System.Web.UI.Design.Util; using System.Web.UI.WebControls; using System.Windows.Forms; using System.Windows.Forms.Design; ////// /// AccessDataSourceDesigner is the designer associated with an AccessDataSource. /// [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] public class AccessDataSourceDesigner : SqlDataSourceDesigner { ////// The AccessDataSource associated with this designer. /// private AccessDataSource AccessDataSource { get { return (AccessDataSource)Component; } } ////// /// Implements the designer's version of the DataFile property. /// This is used to shadow the DataFile property of the /// runtime control. /// public string DataFile { get { return AccessDataSource.DataFile; } set { if (value != DataFile) { AccessDataSource.DataFile = value; UpdateDesignTimeHtml(); OnDataSourceChanged(EventArgs.Empty); } } } ////// Creates the appropriate wizard for the Configure Data Source task. /// internal override SqlDataSourceWizardForm CreateConfigureDataSourceWizardForm(IServiceProvider serviceProvider, IDataEnvironment dataEnvironment) { return new AccessDataSourceWizardForm(serviceProvider, this, dataEnvironment); } ////// /// Gets the data source's connection string. This is overridden to replace /// the runtime control's DataFile property with the mapped path so it can /// be used at design time. /// protected override string GetConnectionString() { return GetConnectionString(Component.Site, AccessDataSource); } ////// Helper method to map the DataFile property of an AccessDataSource to /// a physical path in order to get a design-time enabled connection string. /// internal static string GetConnectionString(IServiceProvider serviceProvider, AccessDataSource dataSource) { string originalDataFile = dataSource.DataFile; string connectionString; try { // If filename is missing, abort if (originalDataFile.Length == 0) { return null; } dataSource.DataFile = UrlPath.MapPath(serviceProvider, originalDataFile); // Calling the ConnectionString property will automatically // build the full connection string using the file path connectionString = dataSource.ConnectionString; } finally { dataSource.DataFile = originalDataFile; } return connectionString; } ////// /// Overridden by the designer to shadow various runtime properties /// with corresponding properties that it implements. /// protected override void PreFilterProperties(IDictionary properties) { base.PreFilterProperties(properties); // Shadow runtime DataFile property PropertyDescriptor property = (PropertyDescriptor)properties["DataFile"]; Debug.Assert(property != null); properties["DataFile"] = TypeDescriptor.CreateProperty(GetType(), property, new Attribute[0]); } } } // 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
- KeyFrames.cs
- SR.cs
- XmlWellformedWriter.cs
- CodeIterationStatement.cs
- OledbConnectionStringbuilder.cs
- _OSSOCK.cs
- ExpressionBuilder.cs
- ProcessInfo.cs
- SecureEnvironment.cs
- GridEntryCollection.cs
- ImmutableDispatchRuntime.cs
- WebServiceEnumData.cs
- SymbolPair.cs
- MobileControlsSectionHandler.cs
- ByteKeyFrameCollection.cs
- BitmapScalingModeValidation.cs
- QueryOutputWriter.cs
- CreateSequenceResponse.cs
- TemplateControlBuildProvider.cs
- TableAutomationPeer.cs
- RegexWriter.cs
- NativeMethods.cs
- DoubleAnimationClockResource.cs
- KeyEventArgs.cs
- BamlRecords.cs
- ManipulationDeltaEventArgs.cs
- CookielessHelper.cs
- Trace.cs
- XmlNodeComparer.cs
- RowBinding.cs
- DeflateEmulationStream.cs
- ActiveXContainer.cs
- CodeStatement.cs
- TextRangeEditLists.cs
- OpCellTreeNode.cs
- HtmlTableCell.cs
- XPathNavigator.cs
- HtmlInputHidden.cs
- CommandDesigner.cs
- SchemaSetCompiler.cs
- TextTreeDeleteContentUndoUnit.cs
- BrushValueSerializer.cs
- JsonWriterDelegator.cs
- TemplateXamlParser.cs
- HTMLTextWriter.cs
- SpecularMaterial.cs
- DecimalAnimationBase.cs
- util.cs
- SchemaTableColumn.cs
- X509InitiatorCertificateClientElement.cs
- SafeFileMappingHandle.cs
- ExceptionCollection.cs
- Transform.cs
- CompilerWrapper.cs
- BlobPersonalizationState.cs
- LocalBuilder.cs
- NativeCppClassAttribute.cs
- DesignerActionListCollection.cs
- Environment.cs
- StoreAnnotationsMap.cs
- ListViewInsertEventArgs.cs
- TriggerCollection.cs
- TableFieldsEditor.cs
- MulticastDelegate.cs
- ChannelManager.cs
- RangeValidator.cs
- CryptoKeySecurity.cs
- XsdValidatingReader.cs
- BezierSegment.cs
- LoginName.cs
- SystemIcmpV4Statistics.cs
- PathFigureCollection.cs
- FlowLayoutPanel.cs
- ProcessInfo.cs
- DetailsViewInsertedEventArgs.cs
- XappLauncher.cs
- milrender.cs
- ConstraintManager.cs
- RequestCachePolicyConverter.cs
- CoTaskMemUnicodeSafeHandle.cs
- MetafileHeader.cs
- ContainerFilterService.cs
- FontSource.cs
- ClientSession.cs
- TreeNodeStyleCollection.cs
- TextBoxDesigner.cs
- SamlAction.cs
- BasicBrowserDialog.designer.cs
- SamlSecurityToken.cs
- DesignerActionGlyph.cs
- TypeBuilder.cs
- ListItemConverter.cs
- DbConnectionOptions.cs
- RadioButton.cs
- SystemThemeKey.cs
- MatrixKeyFrameCollection.cs
- ThreadLocal.cs
- CalendarDataBindingHandler.cs
- PointAnimationUsingKeyFrames.cs
- RuleProcessor.cs