J
|
Jane 8/7/2009 |
Hi, sql = "update AnotherTable set Field1='" & dict("Field1") & "' where IDField=" & dict("IDField") dbConnection.Execute sql dict.Remove("Field1") |
D
|
deeg author 8/9/2009 |
Hi, ASPRunnerPro doesn't support updating multiple tables on one page. You can implement this manually using Before record updated/added events. I.e. use something like this:
|
J
|
Jane 8/10/2009 |
Hi, Session("DetailTableName_masterkey1") = dict("FieldName") Session("DetailTableName_mastertable") = "MasterTableName" Response.Redirect "DetailTableName_add.asp" |
D
|
deeg author 8/10/2009 |
Hi, use After record added event on the Events tab for this purpose. Here is a sample:
|
J
|
Jane 8/10/2009 |
Hi, Response.Redirect "DetailTableName_list.asp?mastertable=MasterTableName&masterkey1=" & dict("FieldName") |
D
|
deeg author 8/10/2009 |
Hi, here is a sample:
|
J
|
Jane 8/11/2009 |
Please see my changes below: Response.Redirect "SRI_ReqDetail_list.asp?mastertable=SRI_REquests&masterkey1=" & keys("Request_ID") |
D
|
deeg author 8/12/2009 |
Please see my changes below:
|
J
|
Jane 8/12/2009 |
It's difficult to tell you what's happening without seeing actual files. |