摘要: void Application_Start(object sender, EventArgs e) { // 在应用程序启动时运行的代码 long totalCount = 0; //总访问数 int todayCount = 0;//今天在线人数 //先从XML中取得访问数 string xmlFilePath = Server.MapPath("~/") + "App_Data//xmls//count.xml"; //XML文件路径 DataSet ds = new DataSet(); ds.ReadXml(xmlFilePath); tota 阅读全文
posted @ 2008-07-30 18:16 流浪者的飘 阅读(895) 评论(1) 推荐(1)