I have to display yes/no button on some condition on my asp.net page , I used windows.confirm() to display that but windows.confirm displays Ok/Cancel Button , Is there any way I can display Yes/No Button in asp.net page instead of Ok/Cancel using Javascript ?
Asked
Active
Viewed 8,627 times
2
-
http://stackoverflow.com/questions/391143/colour-of-text-in-a-javascript-alert – Andreas Grech Jan 02 '09 at 21:56
6 Answers
0
You cannot change the button text on a JavaScript alert, and while you can't change them on a VBScript message box, it has different text. How I got around this was to develop a custom div that contains buttons with the correct text on them that is displayed using absolute positioning and a shadow effect to give the appearance of a message box.

BenAlabaster
- 39,070
- 21
- 110
- 151
0
not cross browser without creating an custom modal dialong or using one that is already built. if you can use ms ajax then it has a modal you can use.

Quintin Robinson
- 81,193
- 14
- 123
- 132
0
You can't do it using prompt, you can show a hidden div with html controls and javascript wired up to buttons. When you want to ask the question show the previously hidden div.
0
Try this.
JS code: `if(confirm('Are you sure???')){ {
}else{
}`