|
|
| |
 |
 |
 |
<%
'·¹ÄÚµå¼Â °¡Á®¿À±â
set rs = server.createobject("adodb.recordset")
sql = "select top 5 * from notice"
sql = sql & " order by num desc"
rs.open sql, conn
if rs.BOF or rs.EOF then
%>
|
|
|
|
|
|
|
|
|
|
|
|
<%
else
do while not rs.eof
title = rs("title")
If Len(title) > 50 Then title = Mid(title,1,50) & ".."
%>
|
&types=<%=types%>"><%=title%>
|
<% = mid(rs("wdate"),6,6) %>
|
<%
Rs.Movenext
Loop
end if
Rs.close
Set Rs = Nothing
%>
|
|
|
|
|
|