valign="top"><table width="100%" border="0">
<%
dim rs,sql
set rs=Server.CreateObject("ADODB.Recordset")
sql="select * from msg_news where type='电力法规';"
rs.open sql,conn,3,1
while not rs.eof
%>
<tr>
<td><a href="mobang1.asp?id=<%=rs("id")%>"><%=rs("title")%></a></td>
</tr>
<%
rs.movenext
wend
set rs=nothing
%>