[an error occurred while processing this directive]
![]() | I've created a form, but I am getting "Unable to process form: Form owner [or form name] not identified" |
This is most likely caused by your form missing one of the two required hidden fields which need to be included in all WebCom forms.
The WebCom Forms Processor looks for two hidden fields, which contain your WebCom userid and the name of the form being processed. If these are missing, an error message will be returned informing you that it could not identify the form name and/or the form owner.
<INPUT TYPE=hidden NAME="form_name" VALUE="nameofyourform">
<INPUT TYPE=hidden NAME="userid" VALUE="youruserid">
For more information on this, please see the section of the Forms Processor documentation which discusses these two special hidden fields.
[an error occurred while processing this directive]