<%
set rs=connn.execute("select top 10 id,学校名称,姓名 from M02_专家表 order by id desc")
dim num
num=0
do while not rs.eof
num=num+1
%>
<%=num %>
<%=rs("学校名称") %>
<%=rs("姓名") %>
简介
<%
rs.movenext
loop
rs.close
%>
课程学科
课程数量
试题总量
<%
sql="SELECT 课程学科, COUNT(课程学科) AS 课程数量, SUM(CAST(试题总量 AS int)) AS 试题总量 FROM C01_课程设置表 where not 建设状态='否' GROUP BY 课程大类,课程学科 order by 课程大类 desc"
set rs=connn.execute(sql)
do while not rs.eof
%>
<%
set rs=connn.execute("select top 35 课程编码,课程名称,显示更新题量 as 试题更新,更新日期 from C01_课程设置表 where not 建设状态='否' order by 更新日期 desc")
num=0
do while not rs.eof
num=num+1
%>