Hi,
I would like to know what is the best practice for updating hidden fields or fields that do not exist on a form when clicking the submit button.
I have several fields that need to be updated when a user clicks the submit button.
For example:
Field1 contains the Last Name
Field2 contains the First Name
Field3 is the hidden field that will bind Field1 and Field2 together to make the Full Name
Field3 = Field1 + " " + Field2
Thanks