I am using ASP 3.0 for IIS 7 and SQL Server 2008 as my dbms. I have a stored procedure encoded in SQL Server. I have some Print instructions, as well as a select statement that returns a set of records after the procedure. I can get a recordset using
Set recordSet = Server.CreateObject ("ADODB.RecordSet")
recordSet.Open "Run my_procedure", dbConn
What I want to do is get the output from the Print statements that I execute in the stored procedure. Please help. Thanks in advance!
source share