using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CY.WebForm { /* * 信息固定类 * * 作用:统一管理项目内的相同信息以便于更该 * 创建时间:2013-4-9 15:12 * 修改时间:2013-4-12 17:45 * 创建人:吴崎均 * 修改人:吴崎均 */ /// /// 信息固定类 /// public class FixedInfo { /// /// 静态构造 /// static FixedInfo() { } /// /// 时间格式 /// public const string DATETIMEFORMAT = "yyyy-MM-dd HH:mm:ss"; /// /// 日期格式 /// public const string DATEFORMAT = "yyyy-MM-dd"; /// /// 保留两位小数 /// public const string DECIMALTWOFORMAT = "F2"; /// /// 时间格式(用于Eval) /// public const string DATETIMEFORMATFOREVAL = "{0:yyyy-MM-dd HH:mm:ss}"; /// /// 两位小数格式(用于Eval) /// public const string DECIMALTWOFORMATFOREVAL = "{0:F2}"; /// /// 货币格式(用于Eval) /// public const string MONEYFORMATFOREVAL = "{0:c}"; } }