123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Web.UI;
- using System.Web;
- /// <summary>
- /// 常用对象
- /// </summary>
- public static class DObject
- {
- /// <summary>
- /// 当前页面
- /// </summary>
- public static Page CURRECT_PAGE
- {
- get
- {
- return (Page)HttpContext.Current.Handler;
- }
- }
- /// <summary>
- /// 当前时间字符串
- /// </summary>
- public static string DATE_TIME
- {
- get
- {
- return DateTime.Now.ToString("yyyyMMddhhmmss");
- }
- }
- /// <summary>
- /// 当前时间字符串
- /// </summary>
- public static DateTime EMPTY_DATE_TIME
- {
- get
- {
- return Convert.ToDateTime("1800-1-1 00:00:00");
- }
- }
- public static string[] MUSER_TYPE = new string[] { "38867b3546a54470b7095b92eda49f5f","e1572fcfb01645fdbbe44fa6d11aa9ab" };
- }
|