This topic is locked

To create field value from other fields

1/5/2007 8:41:54 PM
ASPRunnerPro General questions
R
ryoichi_minagawa author

I am quite a layman of ASP language, please advice how to create a value of a field from other fields in the same table.
Case;
when edit the record, I want to create "FieldTobeCreated" from "SourceFieldname1" & "SourceFieldname2".
Something like dict("FieldTobeCreated") = ?????

Sergey Kornilov admin 1/6/2007

You are almost there. Use BeforeEdit event:

dict("FieldTobeCreated") = dict("SourceFieldname1") & dict("SourceFieldname2")