using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.UI;
using System.Web;
///
/// 常用对象
///
public static class DObject
{
///
/// 当前页面
///
public static Page CURRECT_PAGE
{
get
{
return (Page)HttpContext.Current.Handler;
}
}
///
/// 当前时间字符串
///
public static string DATE_TIME
{
get
{
return DateTime.Now.ToString("yyyyMMddhhmmss");
}
}
///
/// 当前时间字符串
///
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" };
}