<%dim sqlnote
sqlnote="select top * from note order by id desc"
call opendb()
rsopen sqlnoteconn
if not rseof then
do while not rseof
%>
<tr>
<td width="" height="" align="left" bgcolor="#FFFFFF" > </td>
<td width="" height="" align="left" bgcolor="#FFFFFF" ><img src="index_files/dot_emailgif" width="" height="" /> <a href="<%=rs("file_path")%>" target="_blank" class="prodcut" title="<%=rs("title")%>"><%=rs("title")%></a>
<% if rs("send_date")=date() then
responsewrite("<img src=index_files/newgif />")
else responsewrite(rs("send_date"))
end if%></td>
<td width="" height="" align="left" bgcolor="#FFFFFF" > </td>
</tr>
<%
rsmovenext
loop%>
<tr >
<td colspan="" align="right" bgcolor="#FFFFFF" ><a href="noteasp教程" class="page" >更多信息</a> </td>
</tr>
<%
else
%>
<tr class="button">
<td colspan="" bgcolor="#FFFFFF">暂时没有通知通告</td>
</tr>
<%
end if
call closedb()
%>