谢谢!作者: 踏破^ō^凌云 时间: 2009-12-27 03:21
<%
if year(recdate)+month(recdate)+day(recdate)<>year(date())+month(date())+day(date()) then
%>
</b>可以录入<b>
<%
else
%>
</b>不允许录入<b>
<%
end if
%>
比较他们是为了下面的判断语句
<%
if recdate=date() then
%>
</b>可以录入<b>
<%
else
%>
</b>不允许录入<b>
<%
end if
%>
不过我写的执行不了。不知道为什么。作者: 风忠人 时间: 2009-12-27 03:21
报什么错了?作者: √sdf 时间: 2009-12-27 03:21
<%
sub checkdate(one,two)
a=year(one)
b=year(two)
if a=b then
a = month(one)
b = month(two)
if a=b then
a = day(one)
b = day(two)
if a=b then
response.Write("等于")
elseif a>b then
response.Write("大于")
else
response.Write("小于")
end if
elseif a>b then
response.Write("大于")
else
response.Write("小于")
end if
elseif a>b then
response.Write("大于")
else
response.Write("小于")
end if
end sub
set rs = server.CreateObject("adodb.recordset")
sql = "select * from userinfo"
rs.open sql,conn,1,1
n=rs("time")
m=date()
checkdate n,m
%>
这样写应该很好理解吧....作者: 嫣幻霏然 时间: 2009-12-27 03:21
今天就要用,麻烦各位了。作者: 踏破^ō^凌云 时间: 2009-12-27 03:21
<%
if recdate=date() then
%>
</b>可以录入<b>
<%
else
%>
</b>不允许录入<b>
<%
end if
%>