I am opening the msgbox in asp.net by following code..
if (ds.Tables[0].Rows[0][12].ToString() == "0" )
Page.ClientScript.RegisterStartupScript(this.GetType(), "Window", "alert('This ID is not yet approved to create a case. ');", true);
else if(ds.Tables[0].Rows[0][12].ToString() == "2")
Page.ClientScript.RegisterStartupScript(this.GetType(), "Window", "alert('Your ID is rejected to create a case. ');", true);
else
Page.ClientScript.RegisterStartupScript(this.GetType(), "Window", "alert('Please enter a valid ID.');", true);
When its running on mozilla browser Message Box title showing The page at http://.... says:
I want to change this title and show my custom title a part from The page at http://.... says:
Any open help me soon.