I'm using Sitecore WebForms for Marketeers. I have created a custom field with a custom property. The custom field works fine.
I want to read the custom property when I click on the submit button, but I do not know how I can read the custom property.
In the field value is the C# parameter property, but this is null. How can I read the value of the custom property?
Relevant code:
//Set values in dictionary
var values = new Dictionary<String, String>();
foreach (AdaptedControlResult field in fields)
{
values.Add(field.FieldName, field.Value);
}