How to show / display a message box in C # asp.net form?

I want to add / show a message with an OK button in C # asp.net without using the windows.forms namespace.

+6
source share
3 answers

Ext JS got good scripts in the message box, check this out, this will help you Ext JS MessageBox Dialogs

0
source

public void Message (String msg)

 { string script = "window.onload = function(){ alert('"; script += msg; script += "');"; script += "window.location = '"; script += "'; }"; ClientScript.RegisterStartupScript(this.GetType(), "Redirect", script, true); } 
0
source

All Articles