Creating a contact form via controller - Error 400 on submit
Hi all I have followed this documentation to the final detail for creating a submit form using controllers but when I hit the submit button it goes to error 400 and when running in debug it does not even get to the function submit().
is there anything I need to do to rebuild or anything ?
Instead of defining the form (as per the docs) using nameof(ContactFormController.Submit) for the action, just use the string "Submit" I have know the nameof() to cause issues.
Creating a contact form via controller - Error 400 on submit
Hi all I have followed this documentation to the final detail for creating a submit form using controllers but when I hit the submit button it goes to error 400 and when running in debug it does not even get to the function submit().
is there anything I need to do to rebuild or anything ?
the documentation is located on this link: Creating Forms - Umbraco CMS
Instead of defining the form (as per the docs) using
nameof(ContactFormController.Submit)
for the action, just use the string "Submit" I have know the nameof() to cause issues.so decalare like
is working on a reply...