Files
g.hnyhua.cn/Mtxfw.shop/_Admin/admin_app_gl.aspx.cs

34 lines
933 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Text;
using System.Text.RegularExpressions;
namespace Mtxfw.shop._Admin
{
public partial class admin_app_gl : Mtxfw.Utility.AdminPage
{
public Mtxfw.DAL.User_AppLine AppLine = new Mtxfw.DAL.User_AppLine();
public Mtxfw.Utility.Config config = new Mtxfw.Utility.Config();
public string strCount1 = "0", strCount2 = "0", strCount3 = "0";
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
if (!IsPostBack)
{
strCount1 = config.webApp;
strCount2 = AppLine.GetCount("TType=0").ToString();
strCount3 = AppLine.GetCount("TType=0 And DateDiff(day,InTime,getdate())=0").ToString();
}
}
}
}