又是存储过程问题 !
存府过程如下:
------------------------------
create produce test
as
select * from table
go
------------------------------
asp调用
--------------------------------
<!--#include file="../include/conn.asp"-->
<!--#include file="../include/adovbs.inc"-->
<%
Rs=Server.CreateObject("ADODB.Recordset")
Set Rs=Conn.execute("Exec sp_name")
'这里如何输出select * from table的所有记录集呀?
%>