How to change the title of this message box in asp.net?
this heading appears in IE.
Do Help...
How to change the title of this message box in asp.net?
this heading appears in IE.
Do Help...
You cannot. There is no API to do this and the default title is an anti-phishing security feature.
If you want that much control over the appearance of your alert messages, then you will have to build your own in the DOM instead of using native ones.
You can't change javascript message box title. check this out:
How to edit a JavaScript alert box title?
I recommend you to use custom message box instead of alert();
.
For example you can use some jquery plugins like:
Stylish JavaScript Dialog (Alert, Confirm, Prompt) Boxes
or
Dialog Jquery UI
You can't, this is determined by the browser, for the user's safety and security.If really want that use jQuery dialog boxes.