> Hi,
Just do this from your calling page (for example):
<object CLASSID="clsid:BD96C556-65A3-11D0-983A-00C04FC29E33" ID="objDC"
<PARAM NAME="URL" VALUE="DataPage.asp?RS=1">
Then from the DataPage.asp do this
<%
if Request.QueryString("RS")="1" then
%>
This example uses an XML data island, but the concept is the same:
http://support.microsoft.com/default.aspx?scid=KB;en-us;q258295
Joe
I am using RDS Data control like this...
<object CLASSID="clsid:BD96C556-65A3-11D0-983A-00C04FC29E33" ID="objDC"
HEIGHT="0" WIDTH="0">
<PARAM NAME="URL" VALUE="DataPage.asp">
</object>
In DataPage.asp, I have code to access some stored procs and get a
recordset back so I can send this data to the called page.
I was wondering if I can input any parameter in datapage.asp, if yes, how
would I mention in the above code, that I want to send a parameter and how
in the datapage I take that input.. any ideas???
Thanks in advance
Praveena