博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
提醒窗口
阅读量:5287 次
发布时间:2019-06-14

本文共 2096 字,大约阅读时间需要 6 分钟。

脚本:

后台:

using System;using System.Collections;using System.Configuration;using System.Data;using System.Linq;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Xml.Linq;using System.Web.Services;public partial class AJAX_GetMsg : System.Web.UI.Page{    zab_HuiFang zhf = new zab_HuiFang();    zab_SheJiYQ zsj = new zab_SheJiYQ();    protected void Page_Load(object sender, EventArgs e)    {        DateTime now = new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day);        //提示框高度        int height = 100;        //客户回访数量 提早一天提示        int hfcount = 0;        DataTable hfdt = zhf.GetHFTongji(" and hf_khTime >= '" + now.AddDays(1) + "' and hf_khTime < '" + now.AddDays(2) + "'");        if (hfdt != null)        {            hfcount = hfdt.Rows.Count;        }        //设计图纸提交数量 提早一天提示        int sjcount = 0;        DataTable sjdt = zsj.GetSheJi(" and ((sj_timePm >= '" + now.AddDays(1) + "' and sj_timePm < '" + now.AddDays(2) + "' and sj_jiaoTuOneState = 1)"            + " or (sj_timeXg >= '" + now.AddDays(1) + "' and sj_timeXg < '" + now.AddDays(2) + "' and sj_jiaoTuTwoState = 1)"            + " or (sj_timeSg >= '" + now.AddDays(1) + "' and sj_timeSg < '" + now.AddDays(2) + "' and sj_jiaoTuThreeState = 1)"            + " or (sj_timeQT >= '" + now.AddDays(1) + "' and sj_timeQT < '" + now.AddDays(2) + "' and sj_jiaoTuFourState = 1))");        if (sjdt != null)        {            sjcount = sjdt.Rows.Count;        }        string msg = string.Empty;        if (hfcount != 0)        {            msg += "明天需要回访的客户有:" + hfcount + "个
"; height += 30; } if (sjcount != 0) { msg += "明天需要提交的图纸有:" + sjcount + "个
"; height += 30; } if (!string.IsNullOrEmpty(msg)) { msg += "时间:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "
" + "■" + height; } Response.Write(msg); }}

 

转载于:https://www.cnblogs.com/tianrui/p/3393797.html

你可能感兴趣的文章
Scala & IntelliJ IDEA环境搭建升级版:在JAVA中调用Scala的helloworld
查看>>
如何解决inline-block元素的空白间距
查看>>
Asp .Net Core网页数据爬取笔记
查看>>
JS中数组的常用方法
查看>>
centos6环境下使用yum安装Ambari
查看>>
python3中urllib2的问题
查看>>
js获取地址栏参数(限于?后面的)
查看>>
Backup--BUFFERSIZE 和BUFFERCOUNT
查看>>
Extjs6(四)——侧边栏导航根据路由跳转页面
查看>>
前端问题总结
查看>>
勾选复选框按钮可用否则不可用
查看>>
查找算法
查看>>
力扣——由斜杠划分区域
查看>>
java如何使用帮助文档api
查看>>
ajax 请求另一个html页面的指定的一部分 加载到本页面div
查看>>
java.sql.SQLException: 对只转发结果集的无效操作: last
查看>>
独立思考者模型:如何科学地思考 掌握更正确的思维方式
查看>>
配置Eclipse 3.3 + tomcat 6.0 + lomboz 3.3进行Web开发
查看>>
【原版的】无锁编程与实现
查看>>
windows 7 SDK和DDK下载地址
查看>>