Doc2Form - value from dropdown not included in e-mail
I've got a Doc2Form form with a dropdown that's generated by a Razor script. The form displays just fine (including the items in the dropdown), but when I receive the form data in e-mail the value from the dropdown isn't included (the name of the dropdown is in the message, though).
Razor:
@{ <select> <option selected="selected" value="none selected">select a company...</option> @foreach (var node in Model.AncestorOrSelf().LineCardIndex.First().Children) { <option value="@node.contentPageHeader">@node.GetProperty("contentPageHeader")</option> } </select> }
The HTML of the form seems fine. Here's the part that includes the <select> as generated by the Razor code:
Doc2Form - value from dropdown not included in e-mail
I've got a Doc2Form form with a dropdown that's generated by a Razor script. The form displays just fine (including the items in the dropdown), but when I receive the form data in e-mail the value from the dropdown isn't included (the name of the dropdown is in the message, though).
Razor:
The HTML of the form seems fine. Here's the part that includes the <select> as generated by the Razor code:
From the e-mail message:
Any ideas why the value from the dropdown never makes it into the e-mail message?
PS: I'm not seeing any errors in the debug trace.
is working on a reply...