I am new to code and starting with ASP. How do I create a simple message box so I can alert the users on the web page?
If you want to do it from code behind, try this:
System.Web.UI.ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "AlertBox", "alert('Message');", true);