This topic is locked

after data inserted go to next table

10/28/2006 10:18:23 PM
ASPRunner.NET General questions
L
lennyc11563 author

Hi,
Can anyone help me with this issue.
I will use tables to explain. Table 1 is person table and Table 2 is address. They are linked by personid found in both table.
After I enter Person information is it possible to then be redirected to address info to be entered for the just entered person info.
Thanks.

Eugene 10/30/2006

You can try to use "After record added" events, action "Redirect to another page" (Step 11 in ASPRunner.NET wizard)
f.e. :
Public Shared Sub AfterAdd(Page As System.Web.UI.Page)
'Redirect to another page
Page.Response.Redirect("address_add.aspx")
End Sub