Hello. I am designing my first asp web form for my company intranet. I have a checklist form designed with Yes and No selections using Radio Buttons. I need to be notified by email for any "No" selections. I have the code to send email, however using (If, Then) I get an email for each No selection. I would like to receive one email for each form submission. Can anyone help me out? Thanks in advance.
The code I am using to send email is:
Code:
If RadioButton.Checked = True Then
CreateEmail()
End If