if I need to show a MessageBox on my ASP.NET WebForm, how to do it?
I try: Messagebox.show(\"dd\");
Messagebox.show(\"dd\");
But it\'s not working.
Messagebox is for windows only. You have to use Javascript
Alert('dd');