时间显示问题
我想把已经添加到数据库中的日期(1980年5月27日),显示出来(日期出现在对应的下拉列表中对应的年月日),代码应该怎么写了,请大家帮忙了.
2007-07-19 16:49
2007-07-19 21:46
你看这个对吗
<select name="year" id="select">
<%
for i=1996 to 2010
response.write "<option value="&i
if year(rsUser("csrq"))=i then response.write " selected "
response.write ">"&i&"</option>"
next
%>
</select>

2007-07-20 15:03
2007-07-20 16:36
2007-07-20 20:25