//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI.WebControls { using System; /// /// Specifies the FormView edit/view mode. /// public enum FormViewMode { /// /// /// 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 } }