再提select问题
rst.open "select * from neirong where fornatdatetime(n_date,2)='"&date()&"'",conn,1,1<%=rst.recordcount%>仍无显示。
用下面代码能达到效果,但还是想学习一下,看有没有更好的简单方法。
num=0
rst.open "select n_date from neirong",conn,1,1
while not rst.eof
if cdate(formatdatetime(rst("n_date"),2))=date() then
num=num+1
end if
rst.movenext
wend