可以参照下面的代码:
<tr>
<td width="400" align="center" height="28">文章名</td>
<td width="80" align="center" height="28">作者</td>
<td width="100" align="center" height="28">来源</td>
<td width="100" align="center" height="28">发表日期</td>
<td width="100" align="center" height="28">修改日期</td>
</tr>
<%
do while not rs.eof
%>
<tr bgcolor="D0EFFF">
<td with="20"></td>
<td width="400> <input type="text" value="<% =rs("字段名1") %>"/></td>
<td width="80"> <input type="text" value="<% =rs("字段名2") %>"/></td>
<td width="100"> <input type="text" value="<% =rs("字段名3") %>"/></td>
<td width="100"> <input type="text" value="<% =rs("字段名4") %>"/></td>
<td width="100"> <input type="text" value="<% =rs("字段名5") %>"/></td>
</tr>
<%
rs.movenext
loop
%>
还有如果你是用javascript的open弹的子窗口,根本不需要临时表
用window.opener.location="父窗口的url?文本框数=5";
这样来传到子窗口即可,上面那句代码是javascript的写在子窗口中