如何同时显示两个表的内容,两个表结构一样
我的代码如下.麻烦高手帮忙改一下表1: wlw_wlss 表二:gd56_wlw_wlss 结构是一样的,我想同时调用这两个表的内容
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<%
Set rss=Server.CreateObject("ADODB.Recordset")
strSql ="select * from wlw_wlss where username='"&user&"' order by fdate desc,id desc "
rss.Open strSql,db,1,1
if not rss.bof and not rss.eof then
If Request("fid")="" Then
page_no=1
Else
page_no=Cint(Request("fid"))
End If
rss.PageSize=10
rss.AbsolutePage=page_no
%><tr>
<td width="57%" bgcolor="#E8E8E8"><strong> 专线标题</strong></td>
<td width="25%" bgcolor="#E8E8E8"><div align="center"><strong>专线类型</strong></div></td>
<td width="18%" bgcolor="#E8E8E8"><div align="center"><strong>发布日期</strong></div></td>
</tr>
<%
I=rss.PageSize
do while not rss.eof And I>0
I=I-1
%><tr>
<td height="25"> <a href="zx_ss.asp?user=<%=user%>&id=<%=rss("id")%>" target="_blank" ><%=left(rss("title"),36)%></a></td>
<td><div align="center">
</div></td>
<td><div align="center"><%=rss("fdate")%></div></td>
</tr> <%
rss.movenext
loop
%>
<tr>
<td colspan="3"><div align="center">共<%=rss.recordcount%>条 每页<%=rss.pagesize%>条 <%=page_no%>/<%=rss.pagecount%>
<%
if rss.pagecount<>1 then
if page_no=1 then
response.write "首页 上一页 "
else
%> <a href="?fid=<%=1%>&user=<%=user%>">首页</a> <a href="?fid=<%=page_no-1%>&user=<%=user%>">上一页</a>
<%
end if
if page_no=rss.pagecount then
response.write "下一页 尾页"
else
%> <a href="?fid=<%=page_no+1%>&user=<%=user%>">下一页</a> <a href="?fid=<%=rss.pagecount%>&user=<%=user%>">尾页</a>
<%
end if
end if
%> </div><%else%> <!--#include file="inc/ssnot.asp"--><% end if
rss.close
%><br /></tr></td>
</table>