This topic is locked
[SOLVED]

 Insert a record into another table and delete the main record

12/7/2013 5:11:24 AM
ASPRunnerPro General questions
M
mr. zx author

Hi All
Can you help me in this code :

i want to insert a record into another table also in same time i want delete the record from the main table

this is the code before record updated:

dim dal_table

set dal_table=dal.Table("test")

dal_table.name=values("name")

dal_table.kind=values("kind")

dal_table.number=values("number")

dal_table.date=values("date")

dal_table.Add()
Regards,

Sergey Kornilov admin 12/7/2013

Here is the DAl Delete() function that you can use to delete a record from the main table.

http://xlinesoft.com/asprunnerpro/docs/delete.htm

M
mr. zx author 12/8/2013



Here is the DAl Delete() function that you can use to delete a record from the main table.

http://xlinesoft.com/asprunnerpro/docs/delete.htm


Many thanks admin

SOLVED