Change asp message box header / title

Posted by Jb Meris on Stack Overflow See other posts from Stack Overflow or by Jb Meris
Published on 2013-11-12T09:49:31Z Indexed on 2013/11/12 9:53 UTC
Read the original article Hit count: 247

Filed under:
|

how can i change the title of my message box enter image description here

here is my code behind:

string myStringVariable1 = string.Empty; myStringVariable1 = "Policy Number:" + " " + txtPolNo.Text.ToString() + " " + "with Issuance office:" + " " + dropIssOff.Text.ToString() + " " + "was not found on the database. Please make sure that your inputs are correct."; ClientScript.RegisterStartupScript(this.GetType(), "myalert", "alert('" + myStringVariable1 + "');", true);

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about messagebox