<%
Set rsc=Server.CreateObject("ADODB.Recordset")
sqlc="select distinct(b.section_name) , a.section_id , a.related_comid,a.key_id from dbo.law_related_keyrequire a , dbo.section b where a.section_id=b.section_id and a.related_comid='754' and a.law_country_id='3' and a.law_id='10' and a.law1_id='8' and a.law2_id='14' and a.title_id='92' and a.key_id='7' "
rsc.open sqlc,Conn,1,3
if not rsc.eof then
do while not rsc.eof
%>
<%=rsc("section_name")%> ,
<%
rsc.movenext
loop
end if%>