This topic is locked
[SOLVED]

 Inserting Data into other Tables

2/23/2011 3:58:16 AM
ASPRunnerPro General questions
A
adnankmk author

I want to insert values in other table. I am using asp runner 6.3. I have inserted values in other tables correctly using the given code.
set dal_table=dal.Table("infor")
dal_table.b_ID="1"
dal_table.infor="kamoke"
dal_table.ID="1"

dal_table.Add()
These are hardcoded values. I want to get values from the text box of the of page. How to get values from information page and inserted in the anohter table.

Sergey Kornilov admin 2/23/2011

Depends on event where this code is placed. Usually you can access form field values as values("fieldname"). Check events documentation for more info.