Answers for "alert with yes or no option"

C#
12

messagebox yes-no

DialogResult dialogResult = MessageBox.Show("Sure", "Some Title", MessageBoxButtons.YesNo);
if(dialogResult == DialogResult.Yes)
{
    //do something
}
else if (dialogResult == DialogResult.No)
{
    //do something else
}
Posted by: Guest on July-05-2020
0

javascript option yes/no popup

if (confirm('Are you sure you want to save this thing into the database?')) {
  // Save it!
  console.log('Thing was saved to the database.');
} else {
  // Do nothing!
  console.log('Thing was not saved to the database.');
}
Posted by: Guest on March-29-2021

C# Answers by Framework

Browse Popular Code Answers by Language