예제 #1
0
        protected void CreateContactButton_Click(object sender, EventArgs e)
        {
            if (!Page.IsValid)
            {
                return;
            }

            ContactFormView.InsertItem();
        }
예제 #2
0
        protected void InviteAndSaveButton_Click(object sender, EventArgs e)
        {
            if (!Page.IsValid)
            {
                return;
            }

            Invite = true;

            ContactFormView.InsertItem();
        }
예제 #3
0
        protected void SubmitButton_Click(object sender, EventArgs e)
        {
            if (!Page.IsValid)
            {
                return;
            }

            Invite = false;

            ContactFormView.InsertItem();
        }