//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System;
///
/// Specifies the DetailsView edit/view mode.
///
public enum DetailsViewMode {
///
///
/// The control is in read-only mode.
///
ReadOnly = 0,
///
///
/// The control is editing an existing record for update.
///
Edit = 1,
///
///
/// The control is editing a new record for insert.
///
Insert = 2
}
}