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: 269
ASP.NET
|messagebox
how can i change the title of my message box
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