更新信息
<%
sql = "select top 10 t1.softname,t2.softver,lastdate from softinfo t1,updatelog t2 where t1.softid=t2.softid order by lastdate desc"
set sf=conn.execute(sql)
do while not sf.eof
%>
<%=Format_Time(sf("lastdate"),2)%><%=sf("softname")%> <%=sf("softver")%>
<%
sf.movenext
Loop
%>
为什么要购买正式版软件?
如何正确的选择自己所需要的软件?
<%
sql = "select id,cjwt,editdate from cjwtinfo order by editdate desc"
set sf=nothing
set sf=conn.execute(sql)
do while not sf.eof
%>
<%=cLeft(sf("cjwt"),20)%>
<%
sf.movenext
Loop
%>
<%
sql = "select top 10 regname,softname from reguserinfo T1,softinfo T2 where T1.softid=T2.softid and isdisplay=true order by regdate desc"
set sf=nothing
set sf=conn.execute(sql)
do while not sf.eof
%>
<%=cLeft(sf("regname"),20)%>
<%=cLeft(sf("softname"),20)%>
<%
sf.movenext
Loop
%>