How would I add a javascript MessageBox in ASP.NET in the code behind pages using C#.
I have something like this in mind although I still cant get it quite right.
if (success == false)
{
HttpContext.Current.Response.Write("<SCRIPT LANGUAGE=""JavaScript"">alert('User name already exists')</SCRIPT>");
}
Kind regards