教学项目
<%
strSQL="select content,content2 from content_table where typeid='2104' order by PublishTime desc"
RSBegin strSQL,adOpenStatic,adLockOptimistic
set rs1=RSExec()
if not rs1.eof then
if ver<>"" then
contentstr=rs1("content2")
else
contentstr=rs1("content")
end if
response.Write(contentstr)
else
response.write "... ..."
end if
%>