Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / DynamicData / DynamicData / DynamicQueryStringParameter.cs / 1305376 / DynamicQueryStringParameter.cs
using System.Collections.Generic; 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 { ////// DynamicQueryStringParameter allows a datasource to have its primary key easily fed from the query string. /// It does not require any attributes, and works even for multi-part primary keys. /// public class DynamicQueryStringParameter : Parameter, IWhereParametersProvider { ////// See IWhereParametersProvider.GetWhereParameters /// public virtual IEnumerableGetWhereParameters(IDynamicDataSource dataSource) { var table = MetaTableHelper.GetTableWithFullFallback(dataSource, HttpContext.Current.ToWrapper()); // check makes no sense as the above call will throw //if (table == null) { // return new Parameter[0]; //} return RouteParametersHelper.GetColumnParameters(table, Name); } /// /// same as base /// /// /// ///protected override object Evaluate(HttpContext context, Control control) { // If this gets called, it means we never had a chance to expand the parameter. Give an error // telling the user to use a DynamicDataManager throw new InvalidOperationException(String.Format( CultureInfo.CurrentCulture, DynamicDataResources.DynamicParameter_NeedExpansion, typeof(DynamicQueryStringParameter).Name)); } } } // 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
- AsyncResult.cs
- BooleanAnimationUsingKeyFrames.cs
- ServiceModelActivationSectionGroup.cs
- AppDomain.cs
- Funcletizer.cs
- StyleXamlParser.cs
- SQLDoubleStorage.cs
- LazyTextWriterCreator.cs
- ListGeneralPage.cs
- FrugalList.cs
- Brushes.cs
- WindowsFormsSectionHandler.cs
- mediaeventshelper.cs
- ICspAsymmetricAlgorithm.cs
- AttachedAnnotationChangedEventArgs.cs
- AlphaSortedEnumConverter.cs
- SQLConvert.cs
- HyperLink.cs
- StorageComplexPropertyMapping.cs
- SessionStateSection.cs
- StateBag.cs
- FormsAuthentication.cs
- SiteMapDataSourceDesigner.cs
- DiagnosticsConfiguration.cs
- FieldAccessException.cs
- XmlNodeReader.cs
- smtpconnection.cs
- WebServiceParameterData.cs
- DataGridHeadersVisibilityToVisibilityConverter.cs
- EventLog.cs
- _NestedSingleAsyncResult.cs
- CopyOnWriteList.cs
- ResourcesBuildProvider.cs
- SendActivityDesigner.cs
- ApplicationTrust.cs
- TableMethodGenerator.cs
- DecoderNLS.cs
- AddInAdapter.cs
- DetailsView.cs
- OutputCacheSection.cs
- MLangCodePageEncoding.cs
- SelectionWordBreaker.cs
- XmlCharCheckingReader.cs
- SeverityFilter.cs
- WebPartsPersonalizationAuthorization.cs
- DataAdapter.cs
- PixelFormat.cs
- xml.cs
- GridViewDesigner.cs
- SubpageParaClient.cs
- UnmanagedMemoryStreamWrapper.cs
- DataGridViewCheckBoxCell.cs
- WSTrustDec2005.cs
- BaseComponentEditor.cs
- InstalledVoice.cs
- DescriptionAttribute.cs
- MulticastDelegate.cs
- IOException.cs
- TextEffectResolver.cs
- DistinctQueryOperator.cs
- SystemIPInterfaceStatistics.cs
- SchemaConstraints.cs
- DataPagerFieldCollection.cs
- WebBaseEventKeyComparer.cs
- SqlRewriteScalarSubqueries.cs
- AtlasWeb.Designer.cs
- CompleteWizardStep.cs
- Set.cs
- CompositeScriptReference.cs
- DataServiceQueryException.cs
- MessageBodyMemberAttribute.cs
- VerticalAlignConverter.cs
- CustomLineCap.cs
- CharacterMetrics.cs
- ViewKeyConstraint.cs
- PropertiesTab.cs
- MsmqChannelListenerBase.cs
- OciHandle.cs
- HTTPAPI_VERSION.cs
- MenuItemStyle.cs
- ApplicationBuildProvider.cs
- ViewValidator.cs
- Geometry.cs
- CodeChecksumPragma.cs
- SerializerWriterEventHandlers.cs
- ProgressPage.cs
- PlacementWorkspace.cs
- ContextMarshalException.cs
- TagPrefixAttribute.cs
- _ProxyChain.cs
- EventToken.cs
- CmsInterop.cs
- Msec.cs
- Size3D.cs
- MatchAllMessageFilter.cs
- GACMembershipCondition.cs
- PagesChangedEventArgs.cs
- OutputCacheSettings.cs
- RequestTimeoutManager.cs
- BaseContextMenu.cs