Take the community feedback survey now.
AI OnAI Off
Take the community feedback survey now.
FormControl.AfterSubmitPostedData += new SaveFormDataEventHandler(FormControl_AfterSubmitPostedData);
In your method you can check if the form is sent:
if (FormControl.FormDefinition.IsSent)
{
string emailaddress = e.FormData.GetValue("Epost");
}