示例#1
0
        protected void btnDeleteAllUsers_Click(object sender, EventArgs e)
        {
            litStoreNewUserResult.Text = litStoreNewUserError.Text = "";
            try
            {
                client.DeleteAllUsers(new DeleteAllUsers());

                litStoreNewUserResult.Text = "All users were deleted.";
            }
            catch (Exception ex)
            {
                litStoreNewUserError.Text = ex.Message;
            }
        }