function Prompt() {
var mode = confirm("Are you sure you want to deactivate your account?");
var htype = document.getElementById("<%=hfYesRNo.ClientID%>");
if (mode) {
htype.value = 'Yes';
}
else {
htype.value = 'No';
}
window.parent.document.forms[0].submit();
}
var mode = confirm("Are you sure you want to deactivate your account?");
var htype = document.getElementById("<%=hfYesRNo.ClientID%>");
if (mode) {
htype.value = 'Yes';
}
else {
htype.value = 'No';
}
window.parent.document.forms[0].submit();
}
No comments:
Post a Comment