码迷,mamicode.com
首页 > 其他好文 > 详细

排班知识点

时间:2017-12-22 13:34:37      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:示例   sch   display   匹配   match   end   否则   信息   erp   

1.Sql中getDate()在查询语句中的用法

技术分享图片
select *  FROM V_MANAGERPLAN  where  
(SEAT_ID in (45,46)) and  (GETDATE() between  BeginTime and  EndTime) 
 order by Shift_sortid,seatSort
View Code

2.日期加星期(示例:2017-12-22 星期五)

技术分享图片
<span class="sWeek">
                <%=DateTime.Now.ToString("yyyy-MM-dd") %> <%=System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(DateTime.Now.DayOfWeek)%></span>
View Code

3.定时器间隔多少毫秒执行

技术分享图片
var time1=$.trim($("#sUserName1").html() == "暂无排班信息")==true?30000:1800000;
        setInterval(function () { LoadScheduling(); }, time1);
View Code

4.日期js(示例:2017/12/22)

技术分享图片
 var nowtime = new Date();
        var time = nowtime.getFullYear() + "-" + nowtime.getMonth() + "-" + nowtime.getDate();
        var starttime = time + " 8:40";
        var endtime = time + " 9:40";
        var stime = new Date(starttime.replace("-", "/").replace("-", "/"));
        var etime = new Date(endtime.replace("-", "/").replace("-", "/"));
View Code

5.下边款虚线

技术分享图片
border-bottom: 1px dashed #666;
View Code

5.圆角、子间距

技术分享图片
    border-radius: 19px;
    letter-spacing: 2px;
View Code

6.MVC跳转列表,打开新窗口

技术分享图片
 <a href="/Desktop/Scheduling"
                target="_blank"><span class="<%=btnclass %>"><%=seeAll %></span></a>
View Code

7.sql为账户指定默认数据库

技术分享图片

8.Regex正则

技术分享图片
 Regex reg = new Regex(@"^[0-9]*$");
                sid = !reg.IsMatch(t) ? "" : sid;
View Code

IsMatch():指定的输入字符串中找到的匹配项,找到返回true,否则返回false.

9.允许为null

技术分享图片
public ActionResult Scheduling(DateTime? StartTime, DateTime? EndTime, string sid)
        {
            DateTime stime = StartTime == null ? DateTime.Now.AddDays(-1) : DateTime.Parse(StartTime.ToString());
            DateTime etime = EndTime == null ? DateTime.Now.AddDays(1) : DateTime.Parse(EndTime.ToString());
View Code

10.??

技术分享图片
string strParam = Request.Params["param"];
if ( strParam== null )
{
    strParam= "";
}
 
string strParam=
  Request.Params["param"] == null ? "": Request.Params["param"];

//如果左边为null,取所赋值??右边的
//比如int y = x ?? -1 如果x为空,那么y的值为-1.
string strParam= Request.Params["param"]?? "";
View Code
另外还有”?(单问号)“修饰符,是System.Nullable的缩写形式,比如int?代表是可空的整形,
例如:int? a = 1 或者 int? b=null

排班知识点

标签:示例   sch   display   匹配   match   end   否则   信息   erp   

原文地址:http://www.cnblogs.com/yidengbone/p/8085387.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!