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 ?
...
Javascript Confirm popup, I want to show Yes, No button istead of OK and Cancel.
I have use vbscript code
<script language="javascript">
function window.confirm(str) {
execScript('n = msgbox("' + str + '","4132")', "vbscript");
return (n == 6);
}
</script>
this only work in IE, In FF and Chrome, it does't work....
I have an SSIS package I am developing. I am attempting to write data from SQL Server 2005 to MS Access 2007.
I am pretty stumped on how to convert a SQL char(1) field to an Access Yes/No field.
From the information I have gathered, the SQL equivalent of an Access Yes/No field would be a bit field, with values of either 0 or 1.
My SQL...
In a Windows Forms application I have a MessageBox with YesNo buttons. I want to change the text on the buttons (from "Yes", "No" to something custom).
...
I want yes/No alerts using jQuery,instead of ok/Cancel button.
jQuery.alerts.okButton = ' Yes ';
jQuery.alerts.cancelButton = ' No ';
jConfirm('Are you sure??', '', function(r) {
if (r == true) {
//Ok button pressed...
}
}
Any other al...