
<%
set rs_n2=server.createobject("adodb.recordset")
rs_n2.open "select content from News_main where BigClassName='公司簡介' order by infotime desc",conn,1,1
if rs_n2.recordcount=0 then
response.write"資料整理中..."
else
dim info_Content
info_Content=rs_n2("content")
response.Write gotTopic(RemoveHTML(info_Content),650)
info_Content=Null
end if
rs_n2.close
set rs_n2=nothing
%>