|
 |
asp_ado_rds thread: Want to send an input to datapage.asp
Message #1 by "Praveena Alapati" <apraveena@h...> on Mon, 7 Oct 2002 19:19:31
|
|
Hi,
I am using RDS Data control as everybody else, (shown below)
<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
Message #2 by Josh King <JoshK@g...> on Mon, 7 Oct 2002 13:11:39 -0500
|
|
In the value attribute you could add it to the querystring. So it would be
like:
<PARAM NAME="URL" VALUE="DataPage.asp?value1=something&value2=something">
Then in the datapage.asp just use the Request object to grab each parameter.
Josh King
GeoAccess Inc.
xxx.xxx.xxxx x5237
-----Original Message-----
From: Praveena Alapati [mailto:apraveena@h...]
Sent: Monday, October 07, 2002 2:20 PM
To: ASP_ADO_RDS
Subject: [asp_ado_rds] Want to send an input to datapage.asp
Hi,
I am using RDS Data control as everybody else, (shown below)
<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
To unsubscribe send a blank email to %%email.unsub%%
Message #3 by "Praveena Alapati" <apraveena@h...> on Mon, 7 Oct 2002 19:49:33
|
|
Hey!
Thanks much..
> In the value attribute you could add it to the querystring. So it would
be
like:
<PARAM NAME="URL" VALUE="DataPage.asp?value1=something&value2=something">
Then in the datapage.asp just use the Request object to grab each
parameter.
Josh King
GeoAccess Inc.
xxx.xxx.xxxx x5237
-----Original Message-----
From: Praveena Alapati [mailto:apraveena@h...]
Sent: Monday, October 07, 2002 2:20 PM
To: ASP_ADO_RDS
Subject: [asp_ado_rds] Want to send an input to datapage.asp
Hi,
I am using RDS Data control as everybody else, (shown below)
<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
To unsubscribe send a blank email to %%email.unsub%%
|
|
 |