This topic is locked

Details list page

12/23/2008 5:20:26 AM
ASPRunnerPro General questions
I
Inter1908 author

Hi all,

I have a master table named BSM and details table named BSMDetails, they are linked with 02 PK ID and Destination,

after filling BSM and saving it I want the user to be redirected to BSMdetails list page related to master BSM.
ASPRunner Pro 6
Thanks and reagrds,

Tarek

J
Jane 12/23/2008

Hi,
use Redirect to another page action in the After record added event on the Events tab.

Key values are stored in the keys collection, all another entered values are stored in the dictcollection.

Here is a sample:

Response.Redirect "BSMdetails_list.asp?mastetable=BSM&masterkey1=" & keys("ID") & "&masterkey2=" & dict("Destination")