![]() |
Sergey Kornilov admin 2/4/2007 |
You can try the following code in AfterAdd/AfterEdit events. Make sure it appears as a single line of code. Response.Write "<script>if (confirm('Proceed to Add approvals page?')) window.location = 'approvals_add.asp'; else window.location = '..._list.asp';</script>" |
F
|
fnqchick author 3/25/2007 |
You can try the following code in AfterAdd/AfterEdit events. Make sure it appears as a single line of code. Response.Write "<script>if (confirm('Proceed to Add approvals page?')) window.location = 'approvals_add.asp'; else window.location = '..._list.asp';</script>"
|
J
|
Jane 3/26/2007 |
To save masterkey info add following code to the BeforeAdd/BeforeEdit events: Session("DetailTable_masterkey1")=dict("ForeignKey")
|
F
|
fnqchick author 3/26/2007 |
To save masterkey info add following code to the BeforeAdd/BeforeEdit events: where DetailTable is your actual table name, ForeignKey is your actual field name in the MasterTable where foreign key is stored.
|