下面代码新闻显示列表是从旧到新的`希望各位大虾帮我修改成从新到旧
<div id="article">
<em>+ 公司新闻</em></div>
<div id="wens">
<%
id=noid(trim(request("id")))
set rc=server.CreateObject("ADODB.recordset")
if id<>"" then
sql2="select * from Conews where classid="&id
else
sql2="select * from Conews"
end if
rc.open sql2,conn,1,1
rc.pagesize=10
dim Page
if request("Page") <> "" then
Page=cint(request("Page"))
else
Page =1
end if
if not rc.eof and not rc.bof then
rc.absolutepage=Page
end if
count=rc.pagesize
i=1
do while not rc.eof and count > 0
%>
<h3><a href="news.asp?id=<%=rc("id")%>" ><%=rc("title")%></a></h3>
<div><%= nohtml(left(rc("content"),140)) %> [ <a href="news.asp?id=<%=rc("id")%>" >详情</a> ]</div>
<p>发布:达美酒店用品 | 分类:公司新闻 | 时间:<%= rc("time") %> | 查看:<%= rc("history") %>次</p>
<%rc.movenext
count=count-1
loop
%>
</div>