I am a new developer of asp.net, now I have a problem on the issue of how to call java script function in asp.net. (I am lack of java-script)
I have a java-script code that will show the confirm modal popup like this
$('#modals-bootbox-confirm').click(function()
{
bootbox.confirm("Are you sure?", function(result)
{
$.gritter.add({
title: 'Callback!',
text: "BootBox Confirm Callback with result: " + result
});
});
});
I have known that this script binds to item with id "modals-bootbox-confirm" like
<input type="button" id="modals-bootbox-confirm" name="Hello"/>
but in asp the button will be initial with type = "submit"
it cannot call this because after click the button it will postback all the time so how to use this script in asp.net
I have tried to change the id in the script to the asp's id but it does not work. How do I get the result from this modal control? Please help.
I know that asp has onClientClick
but how to apply this script to it?
its easy man,
Just do this
//and it Javascript turn it into function: