Alert Message using C#
Alert Message Using C# in ASP.NET --------------------- Method 1 ScriptManager .RegisterClientScriptBlock( this , this .GetType(), "alertMessage" , "alert('Your Selected AccountID is : " + AccountID + "')" , true ); -------------------- Method 2 ClientScript.RegisterStartupScript ( this .GetType(), "alert" , "alert('Insert is successfull')" , true );