1,   静态页面上的调用程序;<SCRIPT language='javascript' src="../qg/index.asp">2,   ../qg/index.asp的内容
<!--#include file="conn.asp"-->
<%
Set rs= Server.CreateObject("ADODB.Recordset") 
sql="select * from info order by id desc" 
rs.open sql,conn,1,1
%>
<%
do while not rs.eof%>
<%
Response.Write "document.write("" <table width=100% border=0><tr  class=143 align=left> "");"%>
<%Response.Write "document.write("" <td width=200>"+  left(rs("showname"),12) +"</td> "");"%>
<%Response.Write "document.write("" </tr><tr height=3></tr></table> "");"%>  <%                        num1=num1+1 
if num1>=10 then exit do 
rs.movenext 
loop 
rs.close 
set rs=nothing 
%>
但是如何让从数据库出来信息加上超链接,让数据库信息的内容在另一个页面上打开?我现在想在生成的静态页面上,点击调用过来的index.asp的信息在show.asp这个页面上显示内容!请问如何实现阿!