Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
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 6Thanks and reagrds,Tarek
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")