This topic is locked

field values in vb.net

4/19/2016 7:50:12 PM
ASPRunner.NET General questions
A
asawyer13 authorDevClub member

I know this is a stupid question but how do I look at the value of a field in my list form where the column name is xxx?
I think in asprunner it would be values{"xxx") and c# would be values["xxx"], but I'm using vb.net and don't know what to put.

Sergey Kornilov admin 4/19/2016

In Vb.NET you can use values("FieldName"). You can switch to VB.NET in Event Editor and see sample syntax in event description:

values - array of values to be written to the database.

To access specific field value use values("FieldName")