Related questions
ASP.NET Web Application Message Box
In an asp.net windows forms application, in the C# code behind you can use:
MessageBox.Show("Here is my message");
Is there any equivalent in a asp.net web application?
Can I call something from the C# code behind …
C# MessageBox dialog result
I want to make a MessageBox confirmation. Here is the message box:
MessageBox.Show("Do you want to save changes?", "Confirmation", messageBoxButtons.YesNoCancel);
And I want to make something like this (in pseudocode):
if (MessageBox.Result == DialogResult.Yes)
;
else if (…