我创建了一个查询,该查询可能会错过每月的29天和30天
string appPath = String.Empty;
if(HttpContext.Current.Request.ApplicationPath.Length > 1)
{ appPath = HttpContext.Current.Request.ApplicationPath; }
ScriptManager.RegisterStartupScript(this, this.GetType(), "redirect",
"alert('" + sb.ToString() + "'); window.location='" + appPath + /Sub1/PageToGoTo.aspx';", true);
请帮助我编写一个不遗漏该月29日和30日的查询
答案 0 :(得分:2)
尝试:
>DateSerial(Year(Date());Month(Date())-11;1) And <DateSerial(Year(Date());Month(Date())-9;0)
0(零)天将返回上个月的最后日期。