//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System;
///
/// Specifies the behavior of the SqlDataSource.
///
public enum SqlDataSourceMode {
///
/// The SqlDataSource uses a DataReader, which does not allow sorting or paging.
///
DataReader = 0,
///
/// The SqlDataSource uses a DataSet, which allows sorting and paging.
///
DataSet = 1,
}
}