//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* */ namespace System.Web.UI.WebControls { /// /// Specifies the validation summary display mode to be /// used by the control. /// public enum ValidationSummaryDisplayMode { /// /// Specifies that each error message is /// displayed on its own line. /// List = 0, /// /// Specifies that each error message is /// displayed on its own bulleted line. /// BulletList = 1, /// /// Specifies that all error messages are /// displayed together in a single paragraph, separated from each other by two /// spaces. /// SingleParagraph = 2 } }