asp

位置:IT落伍者 >> asp >> 浏览文章

asp 简单读取数据表并列出来


发布日期:2024年04月10日
 
asp 简单读取数据表并列出来

call opendb()
rsopen sqlconn
do while not rseof
%>
<tr>
<td height="" align="left" bgcolor="#FFFFFF"><a href="displayasp?id=<%=rs("id")%>&table_s=hot_lm" target="_blank" class="prodcut">&nbsp;&nbsp;<img src="index_files/dot_emailgif" width="" height="" border="" />&nbsp;&nbsp;<%=rs("title")%></a></td>
<td height="" bgcolor="#FFFFFF"><%=rs("send_date")%></td>
<td height="" align="center" bgcolor="#FFFFFF">专题报道</td>
</tr>
<%rsmovenext
loop
else%>
<tr>
<td align="right">
<%responsewrite("暂时没有相关内容或你是非法进入!")%>
</td>
</tr>
</table>
<%

end if
call closedb()%>

上一篇:asp do while 循环语法与do while实例教程

下一篇:asp中join函数实现字符串连接